Create a function that takes a positive integer and returns a string expressing how the number can be made by multiplying powers of its prime factors.
expressFactors(2) ➞ "2"
expressFactors(4) ➞ "2^2"
expressFactors(10) ➞ "2 x 5"
expressFactors(60) ➞ "2^2 x 3 x 5"
n is a prime number, return n as a string as in example #1 above." x ".