Two separate evaluations create [1, 2] and [1, 2]. What does strict equality between the resulting arrays produce?
Explanation
Each array creation produces a distinct object, so strict equality between the two references is false. Matching elements do not make objects strictly equal because this comparison uses identity rather than structural content.