function setup() {
createCanvas(700,700)
}
function draw(){
background(255,255,255)
strokeWeight(10);
point(350,350);
line(216,113,114,115);
fill(94,312,222);
triangle(26,23,25,100,100,100);
fill(0,250,154,random(0,300));
rect( 200,570,200,43);
fill(0,250,154);
ellipse(400,200,150,random(0,300));
}