Tester

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

    int[] array = {10, 15, 20, 25, 30, 35, 40, 45, 50, 55};
    int result = array[0];   
    int j = 5;

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