xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
noFill();
noLoop();
}
function draw() {
background(220, 20, 120);
for (let i = 0; i < width / 4; i++) {
let rDiam = random(0, width);
ellipse(width / 2, height / 2, rDiam);
}
}