Evaluate the following Java code with escape sequences:
String text = "Hello, \nWorld!"; System.out.println(text);
An error occurs
Hello, World!
Prints on two lines: "Hello," and "World!"
Hello, \nWorld!