One dimensional string array to comma separated string

Is there a function in Xojo that converts one dimensional array to string of values separated with comma?

String.FromArray

Var names() As String = Array("Anthony", "Aardvark", "Accountant")
Var combinedNames As String
combinedNames = String.FromArray(names, ",") ' returns "Anthony,Aardvark,Accountant"
2 Likes

Thank you.