There's an even shorter way to create a switch statement nowadays - switch expression:
string saunaMessage = temperatureInSauna switch
{
<= 20 => "Vilulla hyräättää",
> 20 and <= 40 => "Väljhoosut poes",
> 40 and <= 60 => "Eepä tule yskä",
> 60 and <= 80 => "Saanassako myö ollaan?",
> 80 and <= 100 => "*Insert vihta kuva here*",
> 100 => "Ovi aaki ja justiisai"
};
Debug.Log(saunaMessage);