You using the incorrect syntax here when calling a function
Drop the function keyword and it will pass
When you call a function you reference the function name followed by a parenthesis.
When you declare a function, that is when you use the function keyword followed by the name of the function.
Hello, I was hoping I could get clarification on this. I passed this step thanks to this explanation but I am a little confused because I checked my code and nowhere did I declare “lose” as a function. How can I call a function that was never declared? Unless I am missing something here… thanks
** edit: I spoke too soon, I see I create the function after that step!