44. What will be the output of code?

const a = {
  firstName: 'Bill'
};
const b = {
  firstName: 'Bill'
};
console.log(a.firstName === b.firstName);