Find the logical-pattern bug in this age classifier.
csharp
using System;
Console.WriteLine(Classify(12));
Console.WriteLine(Classify(80));
static string Classify(int age) => age switch
{
>= 18 or < 65 => "working-age",
< 18 => "minor",
_ => "senior"
};