Which statements about iterating array.entries() with for...of are true? Select all that apply.
array.entries() immediately returns one array containing every pair
Each yielded item is a two-element index-and-value pair✓Correct answer
The iterator yields element values without their indexes
Pair destructuring can bind an index and its value during iteration✓Correct answer
Explanation
The entries iterator yields one two-element array at a time, containing an index and its associated value. Destructuring can bind those two parts during for...of; the method does not itself materialize one large array of every pair.