Output a string list

I have a list that contains a total of 3 strings. I want to output the list. How do I do that?

I tried myList.ToString() but that prints out debug information and all I want to print are the three items from the list.

Can anyone help me figure this out? Thank you!

If it’s like this:

List<string> list;

then:

foreach(string str in list)
{
  //print str
}