Experiment with the sample code

var ball;
function start(){
 ball = new Circle(20);
 add(ball);
 
 setTimer(draw, 20);
}
function draw(){
 ball.move(2, 2);
}

https://codehs.com/editor/164/4565/3/1?