I have an array of items like so: ["Steel", "in", "America", "Iron"]
and another array: ["Steel", "Iron", "Copper"]
that I would like compare array the first array to.
I would like to return an array of items that represent a match between the two arrays, in this case, ["Steel", "Iron"]
What is the best method to accomplish this task?