Tester

public class Tester {
  public static void main(String[] args) {  
        String s = "what is the answer to this question?";
        String sub = s.substring( 10, 11);
        System.out.print(sub);
  }
}
 

What is the output?
Be careful of the space/newline in your answer.