Fill the answer for an empty list. Goal: Return immediately when there are no items to count.
Notice the simple case before the loop starts.
The blank should match the smallest answer the function can return directly.
Drag tokens into the blanks
1// Goal: Return immediately when there are no items to count.2function starterExample() {3if (items.length === 0) {4 return ___;5}6}