Is there a way to remove elements from one array that are present in another array? I currently have an array ["a", "b", "c"] as my first array. And the second array consists of [["a", "e"], ["e", "b", "c"], ["a","c"]].
How can I remove elements from the first array that are also found in the second array?
The desired outcome is [["e"], ["e"], []].