Which line of code will get the second character in the string?

String message = "I don't think so";
message.charAt(1);
  • message.charAt(2);
  • message.charAt(0);
  • message.charAt(3);

There are no hints for this question