Question: I need help programming this JAVA code. the text file used is playerData2.txt If the text file doesn't work, its fine, I just need help

I need help programming this JAVA code. the text file used is "playerData2.txt" If the text file doesn't work, its fine, I just need help setting this code up to where I can put the txt file in & see if the output looks like the example above.
Arrays, Methods and File Processing This lab requires you to write methods to read and manipulate data that is stored in a text file. It is designed to give you more hands on practice with arrays and methods before Classes and Objects are reintroduced. You will also read and write data to a file using exception handling (try/catch block) try i //perform some operation that could cause an exception catch SOME EXCEPTION TYPE exception //Actions to perform if there is an exception Use your programming IDE to create a new project. Name your project PlayerStats. In the main method, declare and instantiate two arrays of size 80. One array to hold the player's name (names) and another array to hold the player's integer high game (scores). These arrays are considered parallel because corresponding elements in the arrays refer to the same player. For example, the high score in scores[15] belongs to the player in names[15]. So, if you ever move a player name to another location in the names array (for example, during sorting), you must also move the score to the same location in the scores array to keep them synchronized names scores Before After Kia Adamaleb CalebAdam Before After 568 239 450 568 50 39 Kia
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
