Trouver des matchs en deux tableaux

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