0 / 60 seg.

Analyze the outcome of this Java code involving user input:

Scanner sc = new Scanner(System.in);
System.out.println("Enter two numbers:");
int number1 = sc.nextInt();
int number2 = sc.nextInt();
sc.nextLine();
String text = sc.nextLine();
System.out.println("Numbers: " + number1 + ", " + number2 + ". Text: " + text);