Create a C# class named RandomGenerator.cs does following functions. You should ask from the user input for display either histogram or the frequency (Hint - Use Switch case or if else).
You can decide on how to create methods however, you should call and test the functions in the TestRandomGenerator.cs.
a. Declare an array of dimension 10 (index 0 9).
b. Generate 50 Random integers in the range 0 9.
c. Store the number of occurrences (count) in the array appropriately.
d. Print a table that would list the numbers and the number of occurrences.
e. Print an histogram for the above
Sample Output: see image.