SketchBook

function setup(){
createCanvas(700,700);
background(0);
}
function draw(){
fill(0,255,0);
ellipse(random(width),random(height),100);
}