Build a Voting System - Build a Voting System

This doesn’t work either, not sure what I’m doing wrong:

function displayResults(poll) {
let res = `Poll Results:`
for (const [key, values] of poll.entries()){
res += `\n${key}: ${values.size} votes`
} return res
}