You could use a panel, or a multi-line label.
Add each line to a variable (use the + operator to stick strings together). Then set the text of the label to this variable.
reg myText = "some text"; myText += " Some more text"; // myText is now "some text Some more text" myLabel.set("text", myText);