for (let email of CONTACT_EMAIL_ARRAY) {
console.log('found contact : ${email}');
}
In source textbook, console output is::::: found contact: example mail 1, 2, 3 etc.
When I try it locally it just says : found contact : ${email}
Every time I use console log with a dollar sign ::: output is the same
What is missing?