```ts type Point = [ number, number, // error: trailing comma not allowed ]; const point = [ 1, 2, ]; ``` Is there a reason the trailing comma isn't allowed in tuple types?