xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
for (let i = 0; i < 1000; i++) {
stroke(random(255, 0), random(255, 0), random(255, 0))
fill(random(252, 222), random(140, 138), random(3, 0), random(0, 20))
circle(random(width), random(height), random(0, 200));
}
}