class Test { public static void main(String[] args) { int numbers[] = { 12, 13, 42, 32, 15, 156, 23, 51, 12 }; int max = findMax(numbers); } /* line nl */ { int max = 0; /* code goes here */ return max; } }