Question from the General knowledge for developers test

What is the output of the following code ? ```js let c = { bonjour: "Hello!" }; let d; d = c; c.bonjour = "Wesh!"; console.log(d.bonjour); ```