Write a function called FindPrimes that takes 2 scalars, lowerRange and upperRange, and produces a 1D array called outPrimes1. The function finds all the prime numbers within the range defined by lowerRange and upperRange. The output outPrimes1 is a 1D array with all the primes within the specified range. Remember that a prime number is a whole number greater than 1 whose only factors are 1 and itself.