This program is going to retrieve data from an input file that you specify, stor e the data in a list of records while displaying the progress, and finally store the data in an output file that you specify. What is the name of the file where the data is stored? data.txt What name would you like the output file to have? dataouty.txt New Record Is: bob 14 2.340 Array of data appears as follows. bob 14 2.340 New Record Is: dBob 12 3.400 Array of data appears as follows. dBob 12 3.400 bob 14 2.340 New Record Is: chris 17 3.200 Array of data appears as follows. dBob 12 3.400 chris 17 3.200 bob 14 2.340 The input file used was "data.txt" and the output file used was "dataouty.txt". The program is now successfully finished.