Place the name variable between the parentheses of console.log() and put a semicolon at the end of the line.
name
console.log()
Make sure to use console.log(name); to display the value of the variable name.
console.log(name);