X113: fizzArray3

Given start and end integers, return a new array containing the sequence of integers from start up to but not including end, so start = 5 and end = 10 yields {5, 6, 7, 8, 9}. The end integer will be greater or equal to the start integer. Note that a array with zero elements is a valid array.

Your Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.