xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for (i = 0; i < 100; i++) {
fill(random(127, 255), random(0, 127), random(0, 255), 127);
ellipse(random(width), random(height), random(5, 200), random(5, 200));
}
}