Jak wypchnąć wartość w pustej tablicy w TypeScript

//you need to initialise it as empty first
let x: any[] = []
x.push("any value")
Thoughtless Tarsier