0 / 60 seg.

What is the result of this Java program when trying to replace a substring?

String sentence = "Java is fun";
String updated = sentence.replace("Python", "awesome");
System.out.println(updated);