Q91. What will this code print?const obj = { a: 1, b: 2, c: 3,};const obj2 = { ...obj, a: 0,};console.log(obj2.a, obj2.b);Nothing, it will throw an error0 2undefined 2undefined 2Reference spread syntax es6Q92. Which line could you add to this code to print “jaguar” to the console?