Tester

public class Tester {
	public static void main(String[] args) {
		String text = "Hello World!";
		String ch = ""+text.charAt(text.length() - 9);
		System.out.println(text.replace(ch, "A"));
		System.out.println(text);
		text = text.replace(ch, "A");
		System.out.println(text);
	}
}
What is the output?
Be careful of the space/newline in your answer.