Assume that I have this array:
a = [
    [2823832908, 10071920], 
    [5384625228, 10924221], 
    [8488934028, 313411415], 
    [2823828588, 10071580], 
    [5224682868, 14919881], 
    [8155986228, 560217208], 
    [3458951628, 10071570], 
    [6382592388, 25064430], 
    [5021452668, 10924221], 
    [8827673748, 59397160], 
    [8647215588, 26343621]
]
and this array:
b = [
    [8488934028, 313411415], 
    [8647215588, 26343621]
]
How can I get a new array that contains the values in array a that are not in array b, or how can I  remove the values in array b from array a?
 
     
     
     
    