Tuple : A tuple is a grouping of unnamed, ordered values. Each value in a tuple does not need to be the same type.
const tuplename : [string, number] = [ "ABC", 12 ]
Array : An array is mutable collection. They are very efficient to create, but must always be a single type.
const arrayname: [string] = ["A", "B", "C"]
For more information,refer the following link :