xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
for(let x = 0; x<10000; x++){
stroke(215, 135, 255);
fill(random(0, 255), random(0, 255), random(0, 255), random(0, 255));
ellipse( random(x), random(x), 20, 20);
}
}