const colors = ['red', 'blue', 'yellow'];
// More examples
// empty array
const myArray = [ ];
// array of numbers
const numberArray = [ 10, 20,30, 40];
// array of strings
const stringArray = [ 'Kaushal', 'Kishan', 'Megha'];
// array with mixed data types
const mixData = ['India', 'USA', 1, true];