Question: You would like to print each score on its own line with its cardinal position. Without using **var** or **val**, which method allows iteration with both the value and its position?

  1. `.withIndex()`
  2. `.forEachIndexed()`
  3. `.forEach()`
  4. `.forIndexes()`

Answer: The correct answer of the above question is Option A:`.withIndex()`