Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
Given the following list:
nums ? [1, 2, 3, 5, 8, 13]
What will be the output from nums[2] + nums[4]?
nums[2] + nums[4]
4
6
7
11