This program is going to retrieve data from an input file that you specify, stor e the data in an array of records while displaying the progress, and finally sto re 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? dataout.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. bob 14 2.340 dBob 12 3.400 New Record Is: chris 17 3.200 Array of data appears as follows. bob 14 2.340 chris 17 3.200 dBob 12 3.400 The input file used was "data.txt" and the output file used was "dataout.txt". T he program is now successfully finished.