xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
line(15,25,100,120);
background(230);
}
let x = 200;
let y = 200;
function draw() {
let myColor = color(139, 182, 148);
background(220);
stroke(150);
fill(myColor, 10);
ellipse(x, y, 50, 50);
x += random(-5,5);
y += random(-5,5);
}