[1, 2, 3, 4], 10
[10, 1, 2, 3, 4]
function prepend(arr, item) { let array=[...arr]; array.unshift(item); return array; }