function append(arr, item) {
    var newArr = [...arr, item]
    return newArr
}