Tell us what’s happening:
What will be the output of the following code?
let arr = new Array(3);
console.log(arr);
The answer should be [undefined, undefined, undefined] but isn’t?
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36
Challenge Information:
Working with Arrays, Variables, and Naming Practices - How Do You Get the Length for an Array, and How Can You Create an Empty Array of Fixed Length?
