ive got this assignment and me nbeing shocking at any programming (apart from watch em on tv) cant for the life of me begin to work out the code for this! any help will be highly appreciated 
Over a large number of trials, a “fair” random number generator will return each of the possible values approximately an equal number of times. Therefore in each set of 60 trials if values are generated in the range of 1 to 6, there should be about 10 occurrences of each number.
1. You are required to write a function that will generate 60 random numbers in the range 1 to 6. Over the 60 iterations you should count how many times each of the individual numbers occur. Your function should print out the number of times each number has been generated in the form:
Number 1 has been generated x times.
Number 2 has been generated y times.
.....etc, where x is the generation frequency of 1 and y is the generation frequency of 2....
2. You should write a main routine which calls your function 10 times.

Over a large number of trials, a “fair” random number generator will return each of the possible values approximately an equal number of times. Therefore in each set of 60 trials if values are generated in the range of 1 to 6, there should be about 10 occurrences of each number.
1. You are required to write a function that will generate 60 random numbers in the range 1 to 6. Over the 60 iterations you should count how many times each of the individual numbers occur. Your function should print out the number of times each number has been generated in the form:
Number 1 has been generated x times.
Number 2 has been generated y times.
.....etc, where x is the generation frequency of 1 and y is the generation frequency of 2....
2. You should write a main routine which calls your function 10 times.
Last edited: