xxxxxxxxxx
11
function setup() {
createCanvas(400, 400);
}
function draw() {
stroke(random(255));
// strokeWeight(0);
fill(random(255),random(255),random(255),random(100));
ellipse(random(width),random(height),random(100),random(300));
}