1) Ask the user how many elements should be stored in the array
2) Create an integer array that holds the same number of elements
HINT (Use variable containing input number when defining array)
HINT 2 (Use for loop when gathering user input for populating array)
3) Have user enter values that will populate array
4) Pass array to method that returns the same array. However all elements have had 10 added to them.
5) Display the current values in the new array from the MAIN method. One value should be displayed per line.