![Add items to an array](https://javascriptsource.com/wp-content/uploads/2022/03/Add-items-to-an-array-702x526.jpg)
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);