Code QuizIntermediate

Specifying a Type Argument

Identify the wrong syntax used to pass an explicit type argument.

Codetypescript
function identity<T>(value: T): T {
  return value;
}

const value = identity(string)("hello");

What is the bug in how the type argument is supplied?