xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
}
function draw() {
frameRate(3)
background(220);
noStroke()
fill(128, 109, 84)
for (let i = 0; i < 65; i++){
circle(200+random(-30,30),150+random(10,30),20);
//array
}
}