What happens when the following is run?
  int[] fox = new int[5];
  int n = 1;
  while(n <= 5)
  {
    fox[n] = n;
    n++;
  }