//carrie mae *prototype4* PFont font; void setup() { size(500, 500); font = loadFont("AmericanTypewriter-CondensedLight-32.vlw"); textFont(font); noStroke(); } void draw() { fill(204, 24); rect(0, 0, width, height); fill(0); text("hummingbird", random(-500, 500), random(-20, 520)); }