What is the result of running the following Python code:

name = "Joe"
print("Hello, " + Name)

Question 8 options:

Hello, Joe


NameError: name 'Name' is not defined


TypeError: can only concatenate str (not "int") to str


Hello, name