- What is an Array? 4:35
- Create an Array 2 objectives
- Access Elements in an Array 3:04
- Access Array Elements by Index 2 objectives
- Review Array Basics 5 questions
- Add Elements to an Array 4:10
- Add Elements to an Array 2 objectives
- Remove Elements From an Array 4:17
- Remove Elements From an Array 2 objectives
- Copy and Combine Arrays with the Spread Operator 7:18
- Review Adding, Removing, and Copying Array Elements 6 questions
Quiz Question 1 of 5
Consider the following array:
const lottery = [ 1, 44, 32, 55, 12, 17 ];
Which code snippet prints the number 1
to the JavaScript console?
Choose the correct answer below: