Voting system answer 17 incorrect should be correct

I don’t know if it’s how I wrote the code but it is the same format and every other answer is correct. this is how I wrote it

function displayResults(){

let resultString = `Poll Results:

`

for (const [option, voters] of poll.entries()){resultString += `${option}: ${voters.size} votes

` }

return resultString }

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.