https://docs.vultr.com/javascript/standard-library/Array/join
to convert an array into a single string by joining its elements with a specified separator.
array.join(separator);
separator (optional): A string used to separate the elements.
If no separator is specified, the default separator is a comma (,).
Returns a string with all array elements joined.