Hi @4uSwan ,The split function actually returns an array of elements that consist of all the substrings that were next to a separator.For eg, if you run the following code, var testString = "hello world for test" ;var array = testString.split(" "); The resulting array variable would have content as ...