Consider the following Java code. What is its result?
String text = "Java" + 7 + 8; System.out.println(text);
Java15
Java78
Java758
An error occurs