0 / 60 seg.

What is the result of the following operation involving StringBuilder?

StringBuilder sb = new StringBuilder("Hello");
sb.append(" World").delete(5, 6);
System.out.println(sb.toString());