The correct words to complete the sentence are:
Kotlin
for (num in numbers) { println(num) }
In the given code, the "num" variable should be written in the for loop, so that the output returned is the list of numbers 1 through 3, with each number printed on a new line.
```kotlin
val numbers = listOf(1, 2, 3)
for (num in numbers) {
println(num)
}
```
In the corrected code, the variable "num" is declared in the for loop. It will iterate over each element in the "numbers" list and assign the current element to the "num" variable. The println function is then used to print each value of "num" on a new line.
When you run this code, the output will be:
```
1
2
3
```
Each number in the list will be printed on a separate line, as requested.