Accessing array items automatically using the "for" loop and it's counter
If you remember, we access the items of an array using their index value:
let unsafePasswords = [
"123456",
"password",
"admin",
"qwerty123",
"password123"
];
console.log(unsafePasswords[0]); // "123456"
console.log(unsafePasswords[1]); // "password"
console.log(unsafePasswords[2]); // "