Removing Items from a larger array from a smaller one?

Hi Make Community :waving_hand:

I have what I thought was a simple-ish problem

I have a largish array full of individual keys, and I want to remove the items from a smaller array from it. I also have array_2 in the form of a string separated by ", "

array_1 = [ “foo”, “bar”, “biz”, “baz” ]
array_2 = [ “foo”, “bar” ]
string_2 = “foo, bar”

{{remove(array_1; *args)}}

Is there any way I can give string_2 or array_2 as args for the remove function? Or should I use something else ?

Update: just found the answer here

Cheers
Matoni