Create an application that simulates rolling a standard 6-sided die (numbered 1 - 6).
The die should be rolled exactly 10,000 times.
- The 10,000 rolls should be an input by the user; Ask them how often they want to roll the dice
- The values of the rolled dice should be determined using a random value, based upon the outputs of the Random class object.
- After the program completes rolling the number of times the user requested (10,000), the application should present a table displaying the number of times each dice was rolled.
- The program should ask the user if they would like to simulate another session of rolling the die. Keep track of the number of sessions.