Question 66 1 pts Suppose you enter 34.3, the ENTER key, 57.8, theyenter key. Analyze the following code. 1 Scanner input = new Scanner( System.in); 2 double v1 = inputnextDouble(); 3 double v2 = inputnextDouble(); 4 String line = inputnextLine(); After line 2 is executed, v 1 is 34.3 . After line 3 is executed, v 2 is 57.8 . After line 4 is executed, line contains an empty string. After line 4 is executed, line is null. After line 4 is executed, line contains character " In".