乱数課題
function setup() {
createCanvas(700, 700);
strokeWeight(3);
}
function draw() {
ellipse(random(0, 666), 150, random(50, 150));
fill(127,255,212);
ellipse(random(0, 666), 150, random(50, 150));
fill(0,139,139);
ellipse(random(0, 666), 150, random(50, 125));
fill(255,20,147,random(33,500));
}