Dylan's IsLowercase()

auto FBullCowGame::IsLowercase(FString Word) const -> bool
{
    for (auto Letter : Word)
    {
        if (!std::islower(Letter))
        {
            return false;
        }
    }

    return true;
}