xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(125,60,200);
for (let i = 0; i < 1000; i++) {
stroke (random (240,0), random (27,240), random (23,0))
fill (random (45,186), random (140,138), random (20,0), random (0, 46))
circle(random(width), random(height), random(0,200));
}
}