xxxxxxxxxx
function setup() {
simple();
}
function draw() {
strokeWeight(1);
repeat(200, buble);
}
function buble() {
var x = random(50,750);
var y = random(50,550);
var size= random(50);
fill(random(['SpringGreen','Teal','Turquoise']));
circle(x,y,size);
}