If I have an array such as:
let arr = ["So 2545", "Cool 1123", "Mos 1999"]
that is a subset of a larger array:
let largerArr = ["So 2545", "Fun 1023", "Loss 2009", "Cool 1123", "Mos 1999"]
How can I determine the index of each matching element in the larger array so the output would be another array (i.e. let output = [0,3,4])