let arraytest: any[] = [1, 2, 3] console.log(arraytest) /* Output: [1, 2, 3] or try this */ console.log([1, 2, 3])// clever trick