I have this script currently showing me the repeated numbers between 2 arrays but I can not do it to show me the repeated numbers and if their position matches
var number_load = [2,3,4,1]
var number_input = [9,5,3,1]
for(var numbers in number_load){
if(number_input.indexOf(number_load[numbers])>-1){
console.log('Se repite el numero : ' + number_load[numbers])
}
}