Arrays & Array Methods (map, filter, reduce)

What condition is being checked by combining some() and every()?
const numbers = [1, 2, 3, 4, 5];
const result = numbers.some(x => x > 4) && 
                numbers.every(x => x < 10);
Next Question (7/20)