how to see if one index in an array includes another index in the array code example
Example: javascript check if elements of one array are in another
const found = arr1.some(r=> arr2.includes(r))
const found = arr1.some(r=> arr2.includes(r))