xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
noStroke();
}
function draw() {
background(255, 100, 105);
ellipse(200, 200, 100, 100);
var sec = second();
var More = second() + 1;
for (var sec = 0; sec <= More; sec += 1){
fill(random(255), random(255), random(255));
}
}