there is an extra bracket in front of 'data' that is unnecessary. ``` for(int i=0;i<360;i++){ images[i]=sketchPath("/data/square-"+index(i+1)+".png"); } ``` should be: ``` for(int i=0;i<360;i++){ images[i]=sketchPath("data/square-"+index(i+1)+".png"); } ```
there is an extra bracket in front of 'data' that is unnecessary.
should be: