xxxxxxxxxx
16
function setup() {
createCanvas(600, 600);
background(244, 131, 66);
}
function draw() {
if (mouseIsPressed){
fill(random(255),random(255), random(255));
}else{
fill(255);
}
ellipse(mouseX,mouseY,50,50);
}