
Christopher Sukovich
13,370 PointsWhat am I doing wrong?
My answer is below. I have tested this in the console, and get the correct result there.
let message = Hello ${name}. How are you?
;
1 Answer

Adam Beer
11,297 PointsYou are near! Use backticks. For example:
let message = `Hello ${name}. How are you?`