SketchBook

function setup(){
createCanvas(700,700);

}
function draw(){
background(255,255,255);
point(400,400);
fill(0,250,154);
strokeWeight(12);
fill(173,216,230);
line(600,300,650,200);
fill(100,149,random(0,500));
triangle(300,100,400,100,200,200);
fill(255,105,random(20,200));
rect(10,100,150,100);
fill(210,105,random(30,100));
ellipse(430,280,100);
fill(0,100,random(250,400));
}