**Description:** Returns an array that is the intersection of all the arrays. Each value in the result is present in each of the arrays. **Sample**: ``` intersection([1, 2, 3], [101, 2, 1, 10], [2, 1]) // => [1, 2] ```