xxxxxxxxxx
x1=150
y1=150
//size of the shape
let s1 =300
function setup() {
createCanvas(600, 600);
background(100);
}
function draw() {
fill(255,0,0);
strokeWeight(5)
rect(x1,y1,s1,s1);
fill(0,0,255);
rect(220,355,150,50);
line(272,405,272,355);
line(323,405,323,355);
fill(255,255,0);
rect(115,217,33,150);
rect(453,216,33,150);
fill(0,255,0);
let circleSize = random(100);
circle(237,238,circleSize);
circle(373,241,circleSize);
}