Say you have, an array and you're comparing particular elements of that array (with an index) to another array. It returns false although the values of the elements are the same. Why is that?
const arr1 = [1, 3, 5, 7];
[arr1[0], arr1[1]] === [1,3] // false