You can reference arrays by their index, much like native PHP syntax.
Example 4-3. accessing arrays by index
{$Contacts[0]}<br> {$Contacts[1]}<br> {* you can print arrays of arrays as well *} {$Contacts[0][0]}<br> {$Contacts[0][1]}<br>