The goal is to turn this (.txt file list):
111
222
333
Into this (variable):
111,222,333
The only option I could think of is manually assigning each line to an individual variable using "List processing" and then assigning them into a final variable like:
{var1},{var2},{var3}
The problem...