Question: Using object literal enhancement, you can put values back into an object. When you log person to the console, what is the output?
- `{{name: "Rachel", age: 31}}`
- `{name: "Rachel", age: 31}`
- `{person: "Rachel", person: 31}}`
- `{person: {name: "Rachel", age: 31}}`
Answer: The correct answer of the above question is Option B:`{name: "Rachel", age: 31}`