10.
What is the correct syntax for creating an array of numbers in TypeScript?
string[]
Array<string>
number[]
<number>
Correct: C
The correct syntax for creating an array of numbers in TypeScript is number[]. This notation declares an array that can only contain elements of the number type.