What will the following Java code output?
String s = "Java"; s.concat(" Programming"); System.out.println(s);
Java Programming
Java
Programming
error