xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(150);
for (let i = 0; i < 1000; i++) {
stroke (random (1,40), random (6,10), random (25,50))
fill (random (17,10), random (25,0), random (100,100), random (28,28))
circle(random(0,1580), random(width), random(26,180));
}
}