Which statement returns the roots for the polynomial x^2 + 2x - 4?
x^2 + 2x - 4
poly([1 2 -4])
solve(x^2 + 2x - 4 == 0)
polyfit(x^2 + 2x - 4 == 0)
roots([1 2 -4])