Consider the following code segment.   System.out.print(“One…

Consider the following code segment.   System.out.print(“One”); // Line 1System.out.print(“Two”); // Line 2System.out.print(“Three”); // Line 3System.out.print(“Four”); // Line 4   The code segment is intended to produce the following output, but does not work as intended.   OneTwoThreeFour   Which of the following changes can be made so that the code segment produces the intended output?