--- title: Access an Array's Contents Using Bracket Notation --- # Access an Array's Contents Using Bracket Notation --- ## Hints ### Hint 1 - Remember the arrays index begins at 0 so the postion of b will be located in `myArray[1]`. --- ## Solutions
Solution 1 (Click to Show/Hide) ```javascript myArray[1] = "anything we want"; ```