Different arrays, are hashing very similarly ``` >> [].hash => 0 >> [2].hash => 0 ``` MRI's behaviour is different: ``` >> [].hash => 3252255281033687896 >> [2].hash => 3208161167426848866 ```