Fill the test case that proves empty text survives. Goal: Include an empty string as a real list item, not as missing data.
Notice why empty strings and delimiters matter.
Choose the case that would break a decoder that guesses boundaries.
Drag tokens into the blanks
1// Goal: Include an empty string as a real list item, not as missing data.2function starterExample() {3 const words = ["hi", ___];4return words.length;5}