title: Use the some Method to Check that Any Elements in an Array Meet a Criteria
challengeType: 1
---
## Description
<sectionid='description'>
The <code>some</code> method works with arrays to check if <em>any</em> element passes a particular test. It returns a Boolean value - <code>true</code> if any of the values meet the criteria, <code>false</code> if not.
For example, the following code would check if any element in the <code>numbers</code> array is less than 10:
Use the <code>some</code> method inside the <code>checkPositive</code> function to check if any 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>some</code> method.