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?
- `.withIndex()`
- `.forEachIndexed()`
- `.forEach()`
- `.forIndexes()`
Answer: The correct answer of the above question is Option A:`.withIndex()`