Identify a method that decreases array by keeping only those items that return a value of true from the callback function.
a. array.every(callback [, thisArg])
b. array.map(callback [, thisArg])
c. array.reduce(callback [, thisArg])
d. array.find(callback [, thisArg])