SketchBook

function setup() {
createCanvas(300, 300);
strokeWeight(3);
}

function draw() {
ellipse(150, 150, random(50, 150));
fill(random(240,128,320));
}