Public Function Concatenate(ByVal Paramarray Items As String) As String
Returns the passed items as strings concatenated into one string.
Is mainly used internally for container for $"..{}..{}" string expressions. You can instead also use & to concatenate two strings.
SendDebug Concatenate("how", "do", "you", "do") 'Prints 'howdoyoudo'