Code QuizIntermediate

Applying a Generic Type Alias

Catch the type alias used with too few type arguments.

Codetypescript
type Pair<T, U> = [T, U];

const p: Pair<number> = [1, 2];

What is the bug in this generic type alias usage?