function prepend(arr, item) {
    let newArr=arr.slice(0)
    newArr.unshift(item)
    return newArr
}