// https://www.youtube.com/watch?v=AyiEF53jvoY String[] fruits = { "apples", "bananas", "durians", "kumquats", "rambutans", "pears", "peaches", "plums", "grapes", "pomegranates", "persimmons", "papayas", "guavas", "figs", "tamarinds" }; String randomFruit() { return fruits[ int( random( fruits.length ) ) ]; } void setup() { size( 800, 300 ); textSize( 48 ); } void draw() { background( 80 ); fill( 255 ); textAlign( CENTER ); text( "I like to eat, eat, eat", width/2, 140 ); text( randomFruit() + " and " + randomFruit(), width/2, 215 ); noLoop(); } void keyPressed() { loop(); }