I\'m creating a program that generates 100 random integers between 0 and 9 and displays the count for each number. I\'m using an array of ten integers, counts
The generateNumbers(int[] numbers) function definition has arguments (int[] numbers)that expects an array of integers. However, in the main, generateNumbers(); doesn't have any arguments.
To resolve it, simply add an array of numbers to the arguments while calling thegenerateNumbers() function in the main.