Appends an item to the array after the last item (the item with the highest index).
The return value is the index of the newly added item.
The append method is only valid with single-dimensional Arrays.
Example 5.167. Array class — append method
a=.array~of("Mike","Rick")a~append("Fred")-- a = .array~of("Mike", "Rick", "Fred")