I have created my own type called tuple, and I want to make an array, of length 10, with elements of type tuple. How do I do that (possibly) with that specific Array syntax, or any other?
type tuple = [number, number]
var numbers: Array<tuple> = []