Tester

public class Tester {
  public static void main(String[] args) {  
        String s1 = "you";
        String s2 = "you are";
        String s3 = "you are now";
        String s4 = "you are now using";
        String s5 = "you are now using QuizJET!";
        String s = s3 ;
        int result = s.length();          
  }
}
 

What is the final value of result?