RandomPick randomly selects a value from a return delimited list.
RandomPick (theList)
Let ( [
numberOfItems = ValueCount ( theList ) ;
valuePick = Int( Random * numberOfItems ) + 1
] ; // End Let variable definition
Substitute ( MiddleValues ( theList ; valuePick ; 1 ) ; "¶" ; "" ) // Find the value and strip of the carrige return
) // End Let
