Pseudo-Code 1. Request data filename from user 2. Read data from user filename and put into arrays to create a matrix. a. The array columns will be organized as follows: 0 = Pickup location, 1 = Drop off location, 2 = Passenger count, 3 = Distance, 4 = Fare Amount, 5 = Toll Amount, 6 = Total fare, 7 = Cost per mile. Each row will be one line of data that is read from the user input file. 3. Take the file data and calculate total fare and cost per mile. Add the results to the matrix. 4. Take the file data and extract the number of people transported, the total amount paid, and the average cost per person. 5. Print out the matrix (file data with the additional calculations) in a table format 6. Print out the data from step 4.