var drawButton = function() { fill(220, 216, 216); ellipse(200, 200, 105, 100); fill(255, 0, 0); ellipse(200, 190, 100, 100); fill(255); textSize(32); text("easy", 166, 188); }; drawButton(); var mouseClicked = function() { if(mouseX>160 && mouseX<240 && mouseY>140 && mouseY<240) { fill(0); text("Like It?", 160, 70); fill(255, 0, 0); text("STAPLES", 130, 350); fill(0, 255, 0); ellipse(200, 190, 100, 100); fill(255); textSize(32); text("easy", 166, 188); } };