title: Use the every Method to Check that Every Element in an Array Meets a Criteria
challengeType: 1
---
## Description
<sectionid='description'>
The <code>every</code> method works with arrays to check if <em>every</em> element passes a particular test. It returns a Boolean value - <code>true</code> if all values meet the criteria, <code>false</code> if not.
For example, the following code would check if every element in the <code>numbers</code> array is less than 10:
Use the <code>every</code> method inside the <code>checkPositive</code> function to check if every element in <code>arr</code> is positive. The function should return a Boolean value.
</section>
## Tests
<sectionid='tests'>
```yml
- text: Your code should use the <code>every</code> method.