How would we create a variable that contains a string?

console.log("Robin");var age = 42;var name = "Robin";x = "Robin";

Right on! We create variables with the var keyword and an identifier and give them a value using the = sign.

Not quite! We create variables with the var keyword and an identifier and give them a value using the = sign.