var y= 40; function setup() { createCanvas(100,100) } function draw() { background("lightblue"); fill("yellow"); circle(80,20,30); fill("silver"); rect(0,90,100,10); fill("red") rect(10,40,5,50); fill("red") rect(20,40,5,50); fill("red") rect(20,40,5,50); fill("red") rect(15,40,10,10); fill("White") rect(45,y,15,40); y = y - 0.1; }