Using parameters in a method should include

39         public void setAge(int aNewAge){
40                                    age = aNewAge;
41                         }

The data type int (represented above) is found in the parentheses of the method signature. The temporary name for the parameter is aNewAge.