Write an expression that results in a String consisting of the third through tenth characters of the String s.
LANGUAGE: JAVA
CHALLENGE:
Write an expression that results in a String consisting of the third through tenth characters of the String s.
SOLUTION:
s.substring(2,10)