xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
noStroke();
for(let i=0; i<50; i++){
fill(random(255),random(255),random(255));
circle(random(width),random(height),random(255),random(255));
}
}