Create a function that returns the value of x (the "unknown" in the equation). Each equation will be formatted like this:
x + 6 = 12
solveEquation("x + 43 = 50") ➞ 7 solveEquation("x - 9 = 10") ➞ 19 solveEquation("x + 300 = 100") ➞ -200