0 out of 68 challenges solved

Fix the error in Python code #6

Can you spot the error in the code below? An error may occur when the computer does not understand what you are trying to do. The title of this  is intentionally vague to avoid giving you any hints.
# Fix the error in the code below
def add_two(a, b):
    return a + b

total = add_two(2; 6)
print(total)