○△□一。
function setup() {
createCanvas(700,700);background(255);}
function draw() { background(255)
;point(300,300);
fill(0,128,128,random(0,255));line(400,100,650,100);
fill(72,209,204,random(0,255));triangle(350,500,450,500,500,300);
fill(70,130,180,random(0,255));rect(200,300,50,100);
fill(135,206,235,random(0,255));ellipse(90,100,50);}