My LowerCase() Solution

  bool FBullCowGame::IsLowercase(FString Word) const
{
	for (auto Letter : Word)
	{
		if (Letter == '\0' || Letter == ' ')
			return false;
		if(!islower(Letter))
			return false;
	}
	return true;
}

Also I Put a not operator(!) when the function is called.