X1049: Increase By One

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 Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.