function insert(arr, item, index) {
var newArr=[]
for(let i=0;i<arr.length;i++){
if(i===index){
newArr.push(item)
}
newArr.push(arr[i])
}
return newArr
}
function insert(arr, item, index) {
var newArr=[]
for(let i=0;i<arr.length;i++){
if(i===index){
newArr.push(item)
}
newArr.push(arr[i])
}
return newArr
}