The following method is intended to return an int containing the element at position index in the array numbers. For example, if numbers contains [1, 2, 3, 4, 5], then getValue(numbers, 3) should return 4.
/* missing precondition */
public int getValue(int[] numbers, int index) {
return numbers[index];
}
Which of the following is the most appropriate precondition for the method so that it does not cause an error?