String noun1 = jTextField1.getText();
String noun2 = jTextField1.getText();
String noun3 = jTextField1.getText();
String verb1 = jTextField1.getText();
String verb2 = jTextField1.getText();
String verb3 = jTextField1.getText();
String adj1 = jTextField1.getText();
String adj2 = jTextField1.getText();
String adj3 = jTextField1.getText();
String story = "This is the story about a " + noun1;
jTextArea1.setText(story);
I'm creating a Madlibs with JFrame and need to find out how to continue string on a new line (I forgot) Such as story. I need it to continue so I can add the other sentences.