Question: Given this code, which statement will evaluate to false?

  1. `a['x'] === b['x']`
  2. `a != b`
  3. `a === b`
  4. `a.x === b.x`

Answer: The correct answer of the above question is Option C:`a === b`