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