join( String, { String } )

Returns a new string made by concatenating the list of strings with the separator between each pair in the list.

:-) join( ", ", { "one", "two", "three" } );
There is 1 result
"one, two, three"