Given the String variable name, write an expression that evaluates to the third character of name.
LANGUAGE: JAVA
CHALLENGE:
Given the String variable name, write an expression that evaluates to the third character of name.
SOLUTION:
name.charAt(2)