Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 8: Understanding JavaScript Data Structures!
Instruction
Accessing and Modifying Array Items
Items in an array are numbered starting from zero. This number is called the item's index. You can access individual items in the array using bracket notation.
Example:
const shopping = ["bread", "milk", "cheese", "hummus", "noodles"];
console.log(shopping[0]); // returns "bread"
You can also modify an item in an array by assigning a new value.
Example:
...