// If we have an array, we can define its type in TypeScript by using the notation type[]. let arrayType:string[] = [ 'hello', 'there' ] // Similarly, an array of numbers could be defined like this: let myNumbers:number[] = [ 1, 2, 3, 4 ];