xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
noLoop();
for(let x =30; x < width; x+=50){
for (let y=30; y < height; y+=50){
circle(x+random(1,20) , y+random(1,20),30);
}
}
}