xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0,255,255);
for(let x=0;x<1000;x=x+1){
fill(random(0,255), random(0,255), random(0,255), 128)
ellipse(random(0,width),random(0,height),random(0,200),random(0,200))
}
}