Tester

public class Tester {
  public static void main(String[] args) { 

       int result = 0;
       for(int i = 0; i < 4; i++)
           for(int j = 0; j < 4; j++)
               result = j;  

        result += 1;
  }
}
 
What is the final value of result?