The bracket ([]) substring operators enable you to access rows at a specified position in a result set.
The following example of the ExternalArray class shows the access of the eighth transaction in an external array called transactions.
transaction := transactions[8];
The bracket notation ([]) is a syntax shortcut for the at method of the ExternalCollection class.