Eixtra exercises for Mturach's Visual Basic 2015 Extra 8-2 Display a test scores list In this exercise, you'll modify the Score Calculator form of extra exercise 8-1 so the scores are stored in a list instead of an array Score Calculator Score:? Scone total: 472 Sonted Scores Add Score count 5 92 96 97 98 Average: 94 Oear Scores Ext OK 1. Open the ScoreCalculator project in the Extra Exercises Chapter 2. Replace the declaration for the array variable with a declaration for a List(Of 3. Modify the Click event handler for the Add button so it adds the score that's 081ScoreCalculator With List directory Integer) object, and delete the module-level variable for the score count. entered by the user to the list. In addition, delete the statement that increments the score count variable you deleted. Then, declare a local variable to store the count, and assign the Count property of the list to this variable 4. Modify the Click event handler for the Clear Scores button so it removes any 5. Modify the Click event handler for the Display Scores button so it sorts the 6. Test the application to be sure it works correctly scores that have been added to the list. scores in the list and then displays them in a dialog box. cade Eixtra exercises for Mturach's Visual Basic 2015 Extra 8-2 Display a test scores list In this exercise, you'll modify the Score Calculator form of extra exercise 8-1 so the scores are stored in a list instead of an array Score Calculator Score:? Scone total: 472 Sonted Scores Add Score count 5 92 96 97 98 Average: 94 Oear Scores Ext OK 1. Open the ScoreCalculator project in the Extra Exercises Chapter 2. Replace the declaration for the array variable with a declaration for a List(Of 3. Modify the Click event handler for the Add button so it adds the score that's 081ScoreCalculator With List directory Integer) object, and delete the module-level variable for the score count. entered by the user to the list. In addition, delete the statement that increments the score count variable you deleted. Then, declare a local variable to store the count, and assign the Count property of the list to this variable 4. Modify the Click event handler for the Clear Scores button so it removes any 5. Modify the Click event handler for the Display Scores button so it sorts the 6. Test the application to be sure it works correctly scores that have been added to the list. scores in the list and then displays them in a dialog box. cade