Syntax
string join( list X [, string delimiter] )
Description
join returns a string constructed by concatenating each element of list X. Each element of the string is separated by delimiter. The default delimiter is a space character.
Example
trustedusers={"jamie", "cory", "robyn"}; print(join(trustedusers, "\n"));
Prints the following string:
jamie cory robyn