Arrays store lists of values:
var cars = ["Saab", "Volvo", "BMW"];
Arrays can have any mixture of data types.
Array numerical designators are 0 based. You access elements of arrays like this:
cars[0] will return “Saab”.
There are many methods for dealing with arrays. In kBridge, the .chldren Rule in a Model will return an array of children.