``` let a = {}; a; ``` Shows `[Object object]` ``` let a = {foo: 3}; a; ``` Shows `{ foo: 3, }` It would be worth considering showing `{}` for the empty object case (with some annotation if this is unclear). Also slight nit: The trailing inner comma probably should not be there.