function append(arr, item) { let newArr = JSON.parse(JSON.stringify(arr)); newArr.push(item); return newArr; }