Level 8 > Lesson 5
package main
import "fmt"
func main() {
var listOfTwenty [20] int
for i := 0; i < 20; i++ {
listOfTwenty[i] = i+1
}
fmt.Println("Here is the list of 20 numbers:")
for j := 0; j<20 ;j++{
fmt.Println(listOfTwenty[j])
}
}
submit krne pr show yhi ho rha ..."
Have you completed the code to add values to the listOfTwenty array?"