Write Your JavaScript Code Here

// Array :- It is collection more the single value inside an variable // array.push():- add one or more than one elemrnt to the array const arr=[11,2,3,4,5,26]; console.log(arr); arr.push("number",6); console.log(arr);nsole.log(element);

Output: