Originally Posted By: Witto
I presume a collection is just an array
Look in the KiXtart v4.60 kix2010.doc at page 22


Not quite. This object is an associative array, sometimes called a hashed or named pair. You can think of it as a very simple database table comprising a single key and a single data field.

This type of array uses an arbitrary key that you define as the index instead of a numeric index, so for example you could do:
 Code:
$asRipeFruitArray["Banana"]="Yellow"
"A ripe banana is "+$asRipeFruitArray["Banana"]+@CRLF


Associative arrays come up for discussion quite regularly.