Adds the given element to the end of this array.
names = []names.add( 'Brian' )names.add( 'Joe' )name = names[0] // set to Brianname = names[1] // set to Joename = names[2] // set to null
Note that this is the same as the 'add' method.