Introduction
In this lab, you will explore one of the most fundamental data structures in JavaScript: the array. An array is a special variable that can hold more than one value at a time. Arrays are used to store ordered collections of data, such as a list of items, numbers, or strings.
You will learn how to:
- Create an array.
- Access and modify array elements.
- Add and remove elements using common array methods.
- Loop through an array to process its elements.
Throughout this lab, you will be working within the WebIDE. You will write your JavaScript code in the script.js file. To see the results of your code, you will use the browser's developer console, which can be accessed in the "Web 8080" tab.








