![Create a new array from an existing one](https://javascriptsource.com/wp-content/uploads/2022/04/Create-a-new-array-from-an-existing-one-702x526.jpg)
Create a new array from an existing one, or transform an array-like object (like a NodeList) into an array. Pass the array (or array-like object) to copy in as an argument.
var sandwiches = ['turkey', 'tuna', 'ham', 'pb&j'];
var sandwichesCopy = Array.from(sandwiches);