Question: Using object literal enhancement, you can put values back into an object. When you log person to the console, what is the output?

  1. `{{name: "Rachel", age: 31}}`
  2. `{name: "Rachel", age: 31}`
  3. `{person: "Rachel", person: 31}}`
  4. `{person: {name: "Rachel", age: 31}}`

Answer: The correct answer of the above question is Option B:`{name: "Rachel", age: 31}`