function setup(){ createCanvas(500,500); background(255); } function draw(){ for(let y=0;y<500;y+=60){ for(let x=0;x<500;x+=60){ fill(286); ellipse(x,y,60,60) } } }