FindMaxNumber
Create a new program called FindMaxNumber.
Create an array of integers of size 10. Populate it with random numbers between 1-100. Pass array to your maximum method.
Create a method called maximum that passes an array of integers as a parameter and returns the maximum value in the array. For example, if the array passed stores {12, 7, -1, 25, 3, 9}, your method should return 25. Your method should not modify the elements of the array.
Print maximum number once returned to main method.
Also, use a for each enhanced loop to print all the array elements.
Submit your code.