Hi. Could someone please tell me what I’m missing;
titles = ['The Philosopher\'s Stone', 'The Chamber of Secrets', 'The Prisoner of Azkaban', 'The Goblet of Fire', 'The Order of the Phoenix', 'The Half-Blood Prince', 'The Deathly Hallows'];
for(let i = 0; i < titles.length; i++){
console.log(i+1, `${titles [i]}`);
}
Hint: Make sure that 1. The Philosopher's Stone
is printed (i.e. without the quotes).