Add items to an array. Pass the new items in as arguments.
Learn more about JavaScript push.
var sandwiches = ['turkey', 'tuna', 'blt'];
sandwiches.push('chicken', 'pb&j');
// logs ['turkey', 'tuna', 'blt', 'chicken', 'pb&j']
console.log(sandwiches);