The reason that your text is not showing up is because you did not set the text color.
display.setTextColor(WHITE,BLACK);
If your text color will be the same throughout your sketch (white text on a black background), you can add that code to your void setup(), otherwise you can add it your void loop() before you print the text.