array = Object('zero', 'one', 'two') array.Add('three') array.Add('five', at: 5) array[4] = 'four' Print(array[3]) --> 'three'