Preview:```ts
type Tuple = [string, string]
const res = ["a", "b"].reduce(
(acc: string[], item: string) => {
acc.push(item)
return acc
},
[] as unknown as Tuple
)```
You can choose specific lines to embed by selecting them before copying the link.