background(0); noStroke(0); var x = random(0, 400); var y = random(0, 400); var draw = function() { fill(0); textSize(20); text("BOO", x, y); text("HI", x, y); text("Message 3", x, y); if(mouseIsPressed) { fill(255, 255, 255, 10); ellipse(mouseX, mouseY, 20, 20); } };