Assets\Script\CharacterManager.cs(27,16): error CS1003: Syntax error, '(' expected

Can someone help me solve this one
i just started using unity so i don’t really understand what’s wrong

Assets\Script\CharacterManager.cs(27,16): error CS1003: Syntax error, ‘(’ expected
Assets\Script\CharacterManager.cs(27,16): error CS1525: Invalid expression term ‘{’
Assets\Script\CharacterManager.cs(27,16): error CS1026: ) expected

The error message points to line 27. At line 27 you have an else if, but you didn’t declare a condition for the if. If you don’t want a condition, it just needs to be else. Otherwise, add a condition to the else if statement.

i see thanks