xxxxxxxxxx
function setup() {
createCanvas(500, 500);
background(100);
}
function draw() {
for(let x=0;x<width/100;x++){
for(let y=0;y<height/100;y++){
fill(random(255),random(255),random(255));
ellipse(x*100+50,y*100+50,50)
}
}
}