I want to substract an array from another one which contains it. For example I have two arrays: array1 and array 2, where array2 is contained in array1.
array1 = ["a", "b", "c", "d", "e"]
array2 = ["a", "b"]
And I want to do array1 - array2 which would be stored in a third array: array3
array3 = ["c", "d", "e"]
Thanks in advance for any help provided