print the whole list to screen

I need to test my list and like to find out how to print the whole list to the screen to see if all items were added and in the correct order etc.

In Lingo I use put testList, this showed all items in the list on 1 line seperated by commas.

I tried print (testList); and I get system.collections.generic.list '1[System.string]

print (testList[1]); works but I only get 1 item in the list

Hi!
Try to do this

foreach (item in testList) { print (testList[item]); }