xxxxxxxxxx
16
function setup() {
createCanvas(600, 600);
background(32);
}
function draw(){
var circleX = random(width);
var circleY = random(height);
var circleSize = random(10, 200);
fill(random(355), random(155), random(55));
ellipse(circleX, circleY, circleSize)
}