0
/ 50
The following method takes in an array of integers called numbers. Implement the method so that it increases the value of each item in...
The following method takes in an array of integers called numbers.
Implement the method so that it increases the value of each item in
the array by one, then returns the array.
For example if we had an array [1, 2, 3]
this method should return [2, 3, 4].
Your feedback will appear here when you check your answer.