function setup() { // put setup code here createCanvas(500, 500); } function draw() { var x = Math.floor((Math.random() * 500) + 1); var y = Math.floor((Math.random() * 500)); var r = Math.floor((Math.random() * 256)); var g = Math.floor((Math.random() * 256)); var b = Math.floor((Math.random() * 256)); let c = color(r, g, b); fill(c); ellipse(x, y, 70, 90); }