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]);
}
}
}