I am suppose to insert a image in each circle, which to my understanding i could use this to make a grid
for (var j = 0; j < 4; j++ )
{
for (var i=0; i < 8; i++ ){
image(item, 467 + (i * 70), 331 + (j * 60));
}
}
i was told to add a if varable and it could be the below pattern but i am not sure how, please help!