Iterating over array list 7/13

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>
I am getting this error… what am I missing? Thanks

```

Replace this line with your code.

<do not remove the three backticks above>

It works now I copied and restored the exercise.

remove 1 extra round brackets from for loop statement.

from

for (int j = 0);

to

for (int j = 0;

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.