Problem Statement You are to develop a program in the Go programming language to read Baseball Player objects from an input file into a list/collection. You are to store the players in a collection in such a way that when they are displayed to the screen, they are in sorted order by lastname (then firstname to break name ordering ties). Each line of the data file will contain one player's name and stats. firstname lastname plateappearances atbats singles doubles triples homeruns walks hitbypitch It is possible there are errors in the data lines. The errors you need to check for are that each numeric value is valid, and that all 10 values are on the line. Read until the end of the file is found. Operations/Computations: Compute batting average: this is the sum of the hits (singles, doubles, triples, home runs) divided by the number of at-bats. Compute slugging percentage. The slugging percentage is a weighted average. It is computed by: singles + 2 + doubles +3. triples + 4. homeruns slugging = ? number of at bats Compute the on base percentage. OBP is the sum of all hits, walks and hit-by-pitch divided by the number of plate appearances. Compute the team's overall batting average. Summary of Operation Prompt the user for the input file name. DO NOT hardcode file names into your program. Open input file Read each player and add them to your List. Write a report summary line to the screen. Write each item from the list formatted to the screen, along with any other output required by the assignment Write an error report at the end of the report. Problem Statement You are to develop a program in the Go programming language to read Baseball Player objects from an input file into a list/collection. You are to store the players in a collection in such a way that when they are displayed to the screen, they are in sorted order by lastname (then firstname to break name ordering ties). Each line of the data file will contain one player's name and stats. firstname lastname plateappearances atbats singles doubles triples homeruns walks hitbypitch It is possible there are errors in the data lines. The errors you need to check for are that each numeric value is valid, and that all 10 values are on the line. Read until the end of the file is found. Operations/Computations: Compute batting average: this is the sum of the hits (singles, doubles, triples, home runs) divided by the number of at-bats. Compute slugging percentage. The slugging percentage is a weighted average. It is computed by: singles + 2 + doubles +3. triples + 4. homeruns slugging = ? number of at bats Compute the on base percentage. OBP is the sum of all hits, walks and hit-by-pitch divided by the number of plate appearances. Compute the team's overall batting average. Summary of Operation Prompt the user for the input file name. DO NOT hardcode file names into your program. Open input file Read each player and add them to your List. Write a report summary line to the screen. Write each item from the list formatted to the screen, along with any other output required by the assignment Write an error report at the end of the report