xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw() {
noFill();
stroke(255);
ellipse(random(windowWidth), random(300, 350), 20);
ellipse(random(windowWidth), random(280, 300), 20);
ellipse(random(windowWidth), random(100, 400), 10);
}