Object Property MutationConsider objects a and b below. What gets logged? const a = { firstName: 'Joe' }; const b = a; b.firstName = 'Pete'; console.log(a); Select one:{ firstName: "Joe" }{ firstName: "Pete" }Submit