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’”
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());
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.