Hey there Edkristian!
Without seeing the code you currently have, I'm going to guess that the reason your comparison function isn't working is because you need to be returning a `true` or `false` value within your filter function.
Assuming you have a helper function called `coordinatesInRange(lat, lng)` that returns `true` or `false` if the coordinates are within 25 miles, you would want to structure your filter function to look like this:
data.filter( (item) => {
// Perform any other conditional checks
...
return coordinatesInRange(item.lat, item.lng);
});