"Create" an array called temperatures to store double values. Use a for loop structure to find the hottest temperature of the week.
- "Create" a variable called hottest to hold the highest temperature.
- Iterate over every index of the array.
- Output the value of the hottest day.
Hint: After creating and initializing temperatures array, see if you can print out every element of the array.