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