Help with Magic 8 Ball project

Hi. Can anyone advise why the following prints out Hello, ${userName}!

const userName = ‘Michael’;

userName ? console.log(“Hello, ${userName}!”) : console.log(“Hello!”);

you’re using " where you should be using `

"Hello, ${userName}!"  
should be  
`Hello, ${userName}!`

1 Like

Whoops…rookie mistake!

Thanks so much!

oh i had the same problem