xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(0);
for (let i = 0; i < 50; i++){
noStroke();
fill(23, random(252), random(255));
ellipse(random(width), random(height), 35, 35);
rect(random(width), random(height), 35, 35);
}
}