How do you print 2 lists as text with alternating list items from the 2 lists?

I am trying to print out 2 lists as one into a textbox, with the text being alternating from a first list item from list 1 and the first item in list to and the second item in list 1 and so forth. how would I go about coding this?

What I have understood you want:

Alternatively,

image

Do you also need a line break between pairs?

Like a table?

no i just need it like a bulleted list. I'd just need to replace the comma with \n, right?

Yes. You can get it joining the items with \n.

from my example, modify the join items with separator contents:

image

1 Like