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