Consider the following method:
public void printReverse(String str) {
for (int i = str.length() - 1; i >= 0; i--) {
System.out.print(str.charAt(i));
}
}
Assume that the method printReverse("Hello") appears in a method in the same class. What is printed as a result of the method call?