Take method returns a slice of array with 'count' number of elements from the end of the array
array
(Array): input array[count=1]
(Number): number of elements in the slice of the array
(Array): the slice of the array of length 'count'
const result = arrays.some(['Amy', 'Brie', 'Cam', 'Dimitri']);
console.log(result);
> ['Amy']