Tester

public class Tester {
  public static void main(String[] args) {  
       String str = new String("My Lucky Number is ");
       int i = 4;
       System.out.print( str + i );
  }
}
 

What is the output?
Be careful of the space/newline in your answer.