Consider the following method for finding a target in an array. What is missing?
public static boolean findTarget(int[] array, int target) {
for(int i = 0; i < array.length; i++) {
if(array[i] == target) {
return true;
}
}
// MISSING CODE
}