function setup(){ createCanvas(600,600); background(255); noStroke(); } function draw(){ for(let y=50;y<=height;y+=100){ for(let x=50;x<=width;x+=100){ fill(249,204,226); ellipse(x,y,100) } } }