xhtml
 

Hint

The trouble with:

   System.out.println("Hello" + person);

is that there is no space between the word Hello and the person's name, so the fixed string needs to have a space added, something like this:

   System.out.println("Hello " + person);

Back