Chương trình trên sai ở dòng nào?
1.class BreakDemo {
2.public static void main(String[] args) {
3.int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076, 2000, 8, 622, 127 };
4.int searchFor = 12;
5.int i;
6.boolean fountIt = false;
7.for ( i = 0; i < arrayOfInts.length; i++) {
8.if (arrayOfInts[i] == searchFor) {
9.fountIt = true;
10.break;
11.}
12.}
13.if (fountIt) {
14.System.out.println(“Found “ + searchFor + “ at index “ + i);
15.} else
16.System.out.println(searchFor + “ not in the array”) ;
17.}
18.}
</>