Lets say i have an array like this:
var arr = [0,1,2,3,4];
so i want to make a for loop that loops through the array and console logs every item, but i want it to console log separately every item and each item will be console logged a second after the previous item, how can i do this?