Write a program that allows each employee to enter the temperature at noon of each of the five days and displays the highest, lowest, and average (mean) temps. Write javascript that accepts five daily temperature readings and displays the highest, lowest, and average (mean) temperature. Use a For loop to the five readings. (Hint: Initialize the highest and lowest temperature variable to the firest temperature that's read, and then compare other temperature to see whether they are higher or lower.) Using parseFloat() method, convert the temp input into a decimal number and display this avg. to one decimal place.