array.push [method]

array.push( ... )

appends the variables passed to the end of array in the same order, returns the array for chaining

a = [ 5 ];
a.push( 6, 7 ).push( 8 ); // a = [5,6,7,8]