xxxxxxxxxx
16
let xpos = 200;
let ypos = 200;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(50);
noFill();
stroke(255);
strokeWeight(8);
ellipse(mouseX, mouseY, xpos, ypos, 45, 45);
xpos += random(-1, 1);
ypos += random(-1, 1);
}