super("JTextAreaDemo");
GraphicsEnvironment.getLocalGraphicsEnvironment();
Font font = new Font("LucidaSans", Font.PLAIN, 40);
JTextArea textArea = new JTextArea(davidMessage + andyMessage);
textArea.setFont(font);
this.getContentPane().add(textArea);
textArea.show();