function setup() { // put setup code here createCanvas(640,480); print("hello world"); } function draw() { // put drawing code here background(random(255)); ellipse(55,55,55,55); }