<script src="http://wilderland.org/javascript2/findDoubleDigitTest.js"></script>
<script src="http://wilderland.org/javascript2/filter.js"></script>
<div class='explanation'>
The tests in this fiddle expect a function called "findTwoDigits". The tests will pass the function an array of numbers. The function should return an array with only the two-digit numbers from the original list.
<p>
An easy way to tell if a number is a two-digit number is to check whether it's between 10 and 99 (inclusive). Don't worry about fractions; all of the numbers in the test list will be integers (whole numbers).
</div>
<button>Click To Run Tests</button>
<div id=results></div>