Letra E
Há duas formas de criar array de inteiros:
var a: number[ ] = [1, 2, 3];
var a: Array = [1, 2, 3];
E pode-se, ainda, criar um array que receba qualquer valor, para isto usamos o ANY:
var a: any[ ] = [1, 2, 3];
da mesma forma poderia estar recebendo como valor em vez de [1,2,3], valores como [1,false,"Analia"].
Generics, é a denominação dada a segunda forma de criar arrays apresentada no item II, são arrays genéricos, onde entre <> se define o tipo.
Assim, aprendi, se algo estiver errado, por favor informem :)
TypeScript, like JavaScript, allows you to work with arrays of values. Array types can be written in one of two ways. In the first, you use the type of the elements followed by [] to denote an array of that element type:
let list: number[] = [1, 2, 3];
The second way uses a generic array type, Array:
let list: Array = [1, 2, 3];
The any type is also handy if you know some part of the type, but perhaps not all of it. For example, you may have an array but the array has a mix of different types:
let list: any[] = [1, true, "free"]; list[1] = 100;