Tester

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

       int j = 0;
       int result = 0;
       do {
           j++;
           result += 4;
           result = result - j;
       } while (j < 4);
       
  }
}
What is the final value of result?