xxxxxxxxxx
function setup()
{
createCanvas(windowWidth, windowHeight);
frameRate(10);
}
function draw()
{
background(random(255), random(255), random(255));
ellipse(mouseX, mouseY, random (100), random(100));
fill(random(255), random (255), random(255));
}