Your goal is to convert an array into a string.
int[] TheArray = new int[] { 1, 2, 3, 6, 7, 8 };
string TheArrayString = TheArray.????;
Console.WriteLine( TheArrayString );
Replace the "????" placeholder with a valid C# expression so that the output of the above snippet on the console is:
1, 2, 3, 6, 7, 8