Now what values are printed?
lfinal int ARRAY_SIZE = 5;           // Named constant
ldouble[] temps;
ltemps = new double[ARRAY_SIZE];
lint m;
l . . . . .
lfor (m = temps.length-1; m >= 0; m--) 
l  System.out.println(“temps[“ + m + “] = ” + temps[m]);
l
l
temps[0]    temps[1]    temps[2]    temps[3]    temps[4]
  100.0      100.2       100.4      100.6       100.8