push(strings) - Strings are placed at the end of the array. This method is not defined so it must be written and included in your code.
Code:
words = new Array("limit","lines","finish")
words.push("complete","In","Out") The array, words, will be:
Code:
limit, lines, finish, complete, In, Out