xxxxxxxxxx
function setup() {
createCanvas(500,500);
background(220);
noFill();
let x = 0
let y = 0
for(let j = 0; j <6; j++){
for(let i =0; i < 6; i++){
ellipse(x,y,100,100)
x = x +100
}
x = 0
y = y + 100
}
x = 50
y= 50
for(let j = 0; j <6; j++){
for(let i =0; i < 6; i++){
ellipse(x,y,100,100)
x = x +100
}
x = 50
y = y + 100
}
}