What is the output of the following code snippet?
public class ReferenceTest {
public static void main(String[] args) {
String x = new String("Java");
String y = new String("Java");
System.out.println(x == y);
}
}