41. What will be the output of code?

const obj = {
  1: 1,
  2: 2,
  3: 3
};
console.log(Object.keys(obj) == Object.values(obj));