Given this code, which statement will evaluate to false?
const a = { x: 1 }; const b = { x: 1 };
a['x'] === b['x']
a === b
a.x === b.x
a != b