diff --git a/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md b/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md index 676c8a10f00..1b5662f6d67 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-types-and-objects/6732c68f4520d160584a6fd2.md @@ -39,7 +39,7 @@ const person = { name: "John", age: 30, isStudent: true -}, +}; console.log(person.toString()); // "[object Object]" ```