Hi all! Hoping a second set of eyes can help me see what Im missing. In working thru the magic 8 ball project, and in the early stages im not getting the out put im looking for. Ive tried rewriting, following the project video, and completely resetting my workspace and browser. Does anyone see what I may be missing here? Thanks in advance
let userName = 'Schy';
userName ? console.log('Hello, ${userName}!') : console.log('Hello!');
let userQuestion = 'Will I find happiness?';
console.log('Great question, ${userName}! You asked: ${userQuestion}.');