If your JTextArea will only contain "WORD HINT: ..." then use the setText() method:
jTextArea1.setText("WORD HINT:\n" + word);
This will replace all the text with what you want.
BTW : removeAll() is part of the Container class, and is not to remove text but child components.