Quiz
Distributive Conditional Types Over Unions
Understand how naked conditional types distribute over union members in TypeScript.
Given `type ToArray<T> = T extends unknown ? T[] : never;`, what is the resulting type of `type R = ToArray<string | number>`?