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