If I have an array similar to this one:
let numbers = [5,10,15,20,25];
I'm trying to create a for loop that will iterate through the array and log each item separately. However, I would like each item to be logged with a one second delay between them. How can I achieve this?