function setup(){ createCanvas(600,600); background(255); colorMode(HSB,360,100,100,1); } function draw(){ for(let y=50;y<600;y+=100){ for(let x=50;x<600;x+=100){ fill(random(360),255,100); ellipse(x,y,100,100) } } for(let y=50;y<600;y+=100){ for(let x=50;x<600;x+=100){ fill(random(360),255,100); ellipse(x,y,100,100) } } }