const array = ['a', 'b', 'c'];

array.forEach(element => console.log(element));

// "a"
// "b"
// "c"