Too many arguments for function-like macro invocation 'TEXT'

I have followed the code of the Unreal Engine 4.27 and C++ course on Udemy and ran into an error in the compile logs for UE4. It’s throwing the error of: “[2022.02.09-00.33.06:547][411]CompilerResultsLog: F:\Audio and Video MEDIA projects\Unreal Engine Udemy course resources and downloads\Unreal Course downloads\BullCowGame-starter-kit\Source\BullCowGame\BullCowCartridge.cpp(36) : error C4002: too many arguments for function-like macro invocation ‘TEXT’”

My code looks like this:

What do I do?

The second PrintLine from the bottom has the braces wrong, it must be:
PrintLine(TEXT("The Hidden Word is %i characters long, try again!"), HiddenWord.Len());

I asked about this in the To many Arguments for function-like marco Invocation 'TEXT' - Ask - GameDev.tv forum, and someone there said I needed to do it like this.

PrintLine(FString::Printf(TEXT("Guess the %i letter word"), HiddenWord.Len()));

Well, that depends on how the PrintLine function is implemented. But the error that you have posted refers to the fact that the TEXT macro only takes one argument.