What error in this program needs to be fixed?

def sum(num1, num2):

return num1 + num2

print(sum(4, 5.5, 6))

(1 point)
Responses

The sum function and print statement can’t be combined.

The sum function can only take integers, not decimals.

The sum function can only take two arguments.

def should be define.

The sum function can only take two arguments.