Mark As Completed Discussion

Are you sure you're getting this? Fill in the missing part by typing it in.

Arrays are a data structure that allow us to store and manipulate multiple values in a single variable. Each value in an array is called an _. Arrays are commonly used to group related data together and access them using an index. Here's an example:

SNIPPET
1var fruits = ["apple", "banana", "orange"];

In the above example, fruits is an array that contains three elements: "apple", "banana", and "orange".

Write the missing line below.