function setup() {
createCanvas(400, 400);
frameRate(2);
}
var n=3;
function glob(x, y)
{
push();
fill(random(0, 255), random(0, 255), random(0, 255));
ellipse(x, y, 20, 20);
pop();
function draw() {
noStroke();
fill("#b3b3ff");
rect(0, 370, 400, 30);
fill("#663300");