Write a program that declares an array of doubles with the following numbers: \( \{212.0 \), \( 98.6,32.0,61.0\} \). Your program should work with any array of numbers. Write a Java program that converts each temperature in the array from Fahrenheit to Celsius, and displays the result. Also, compute the average, variance, standard deviation, and median of Write a program that declares an array of doubles with the following numbers: \( \{212.0 \), \( 98.6,32.0,61.0\} \). Your program should work with any array of numbers. Write a Java program that converts each temperature in the array from Fahrenheit to Celsius, and displays the result. Also, compute the average, variance, standard deviation, and median of the temperatures in both Celsius, and Fahrenheit. Make to use of Java methods. You are required to implement the following methods: double Sum (double [] arrayofDoubles) double Average (double sum, int \( n \) ) double variance (double[] arrayofDoubles, double average) double StandardDev(double variance); double Median(double [] arrayofdoubles) Even though you are using the above array as your test case, your code should still work if I substitute a different array into your code. That different array could possibly have 10 numbers, or 50 numbers, and your code should still work.