which of the following lines will not result in a syntax error?

print("Jane",5)

print("Jane,5)

print("Jane" 5)

print(Jane",5)

The correct line that will not result in a syntax error is:

print("Jane",5)