xxxxxxxxxx
function setup() {
createCanvas (800,800);
background(232,225,213);
fill(0);
noStroke();
square (200,200,400,400);
}
function draw() {
noStroke();
fill(0,0,0,100);
square(mouseX+random(0,10),mouseY+random(0,10),50,50,);
}