katiem1798 katiem1798 22-04-2024 Computers and Technology contestada What is the output of the following program?public class SayHello{public void run(){String stringArray[] = {"h", "e", "l", "l", "o", "w"};for(int i=0; i <= stringArray.length; i++){System.out.print(stringArray[i]);}}}