I'm trying to create a scenario where you have a text box, you enter the name of something, press enter and do that as many times as you want. Then when you press 'generate' it takes all the names you entered in the box total and puts them in a document with the structure of:
{"item1", "item2", "item3"}
and so on depending on how many items you put in (with the possibility of putting 0 things in)
I've already know how to print the document, but I'm confused on how to print the list of strings you create to the document.