You cant succed, the answer contradicts the requirements.
package en.codegym.java.core.level01.task03;
public class Solution
{
public static void main(String[] args)
{
// Print the first word of the first line
System.out.print("I");
// Add a space and print the second word of the first line
System.out.print(" learn");
// Add a space and print the third word of the first line
System.out.println(" Java.");
// Print the first word of the second line
System.out.print("This");
// Add a space and print the second word of the second line
System.out.println(" is interesting!");
}
}