IF TEST = 1 { ASSIGN Example1 = "Wes|Clay|Mark|Jed|Mike|Bill|Ryanne" ASSIGN IndexValue = 3 } //Returns the specified array element within the variable. ASSIGN ArrayPart1 = "{Example1.index(IndexValue)}" //This is synonymous TO reading an array using square brackets. variable[3] is the same as variable.index(3). ASSIGN ArrayPart2 = "{Example1[IndexValue]}"