Create a function that returns an array containing the prime factors of whatever integer is passed to it.
primeFactors(20) ➞ [2, 2, 5] primeFactors(100) ➞ [2, 2, 5, 5] primeFactors(8912234) ➞ [2, 47, 94811]