{ } void setup() { size(600,600); background(150); size(600,600); } void draw() { fill (255); stroke(0); strokeWeight(2); line(400,300,200,300); ellipse(width/2, height/2,50,50); fill( random(256), random(256), random(256)); } void mousePressed(){ ellipse(width/2,height/2,200,200); fill( random(256), random(256), random(256)); println("got to catch them all"); } void keyPressed(){ background( random(256), random(256), random(256));}