and I was being told that “some()” wasn’t a function. I tried simplifying the function to get the browser IDE to simply recognize that it is indeed a function, but was unable to do so.
Not quite. You are being told that arr2.some is not a function.
What does console.log(typeof arr2) show you? The variable name you chose is lying to you. .some is indeed not a method on the type of thing that arr2 is.