The Join Node joins several Strings into one. For this, it receives an Array populated with the Strings to be joined and a separator as inputs. The output is a String composed of the Strings in the input Array separated by the given separator.
For instance, having the Array[uno, dos, tres, cuatro, cinco] and a semicolon separator (;) as inputs generates the Stringuno;dos;tres;cuatro;cinco.