xxxxxxxxxx
12
function setup() {
createCanvas(400, 400);
for(let i = 0; i < 500; i++) {
fill(random (255),random(255),random(255));
ellipse(random(400), random(400), random(100),random(100));
}
}
function draw() {
// background(220);
}