importance: 5 --- # Constant objects? Is it possible to change an object declared with `const`, how do you think? ```js const user = { name: "John" }; *!* // does it work? user.name = "Pete"; */!* ```