xxxxxxxxxx
19
let x = 200;
let y = 200;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(245, 108, 44,15);
fill(200, 0, 0);
stroke(255);
circle(x, y, 20);
// x += 1;
// x++;
x = x + random(-5,5);
y = y + random(-5,5);
}