name 변수에 자신의 이름을 넣고, 템플릿 리터럴로 "안녕하세요, name님!"을 출력해보세요.
const name = '홍길동'; console.log(`안녕하세요, ${name}님!`);