Parse error: syntax error, unexpected ‘,’

You’ve got unbalanced and improperly placed closing parenthesis. There shouldn’t be the closing parenthesis after the 'stylesheet'.

Because the closing parenthesis is there, the PHP processor thought that was the end of the function’s parameters. Which caused the comma character after that to cause the error.

Watch the balancing of your parenthesis (and quotes) as you are writing your code.