Tester

public class Tester{
   public static void main(String args[]) {
      String str = "Hello World!";      
      str = str.substring(0,2);
      System.out.println(str.equals("Hello"));
   }
}
What is the output?
Be careful of the space/newline in your answer.