/**
* Adds superhero names to the `mySuperHero` array.
* Example superheroes added: "Super Man", "Spider Man", "Iron Man".
*/
mySuperHero.push("Super Man");
mySuperHero.push("Spider Man");
mySuperHero.push("Iron Man");
console.log(mySuperHero);`
mySuperHero: string[]
Always specify array types explicitly (`string[]`), otherwise, TypeScript may infer the array type as **never**.