Use an array of double values to: Allow user to specify how many values to work with (n). Store n random numbers in the array * in a separate loop display all n random numbers * in a separate loop calculate the sum; after the loop display the sum and the average * in a separate loop find the minimum value * in a separate loop find the maximum value * in a separate loop, double every array element Now modify the program so that the user can add 3 new values to the list (be sure to update n appropriately). The program should perform all the steps above (display, sum, avg, max, and min) based on the modified list. Modify the program so that the max and min values are removed from the array. Modify the program so that the user can specify the position of the element they want to remove.