Drag the value that makes the name useful. Goal: Create a string value, store it in a variable, then return that variable.
Recognize that a variable can hold a helper object.
Find the right-hand side of the assignment before worrying about the loop.
Drag tokens into the blanks
1// Goal: Create a string value, store it in a variable, then return that variable.2function starterExample() {3 const name = ___;4return name;5}