The goals 💪🏻Different Ways of Creating Arrays ✌🏻Working with Arrays = A Deep Dive! 👍🏻Important Array Methods 👏🏻Other Iterables: Maps & Sets const numbers = [1, 2, 3]; console.log(numbers); const moreNumbers = new Array(5); console.log(moreNumbers); v With this 'new' it can have another characteristic as we can see above. And we can create an array without 'new' keyword, but still it works the sa..