Tester

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

          int result = 3;
          for (int j = 0; j < 3; j++) 
              result += j;
          
  }
}
What is the final value of result?