Temukan pertandingan dalam dua array

const intersection = array1.filter(element => array2.includes(element));
Lonely Loris