Python Code Challenge

185 - What is wrong with the code below?
def sum_of_squares(x, y):
    return x * 2 + y ** 2

print(sum_of_squares(3, 4))