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