Java - Strings and String Handling
What is wrong with the following code?
StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb = sb + " World";
System.out.println(sb);