You can create arrays using two common methods:

This is the simplest way to declare and initialize an array. You directly specify the elements within square brackets [].

Example:

JavaScript
let fruits = ["Apple", "Banana", "Mango"];
console.log(fruits);  // Output: ["Apple", "Banana", "Mango"]

You can also create arrays using the Array() constructor, though this is less common.

Example:

JavaScript
let numbers = new Array(10, 20, 30);
console.log(numbers);  // Output: [10, 20, 30]