Java script, I have a list, animals = [cat, dog, another_cat, another_dog, mouse, squirrel, etc.]
and another list, numbers = [2, 3, 4]
I am looping the animals list. for( i = 0; i < animals.length; i++) console.log = (numbers)
I need "console.log = (numbers)" on the first loop to give me 2, on the next one to give me 3, next 4, next 2...3...4
I apologize again if I wasn't clear.