Fill the boundary that keeps the index inside the list. Goal: Walk through every valid index without reading past the end.
Use the loop boundary and final return together.
The two pointers move inward; the blank should keep them inside the string.
Drag tokens into the blanks
1// Goal: Walk through every valid index without reading past the end.2function starterExample() {3let index = 0;4 while (index ___ nums.length) {5index += 1;6}7}