Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

package main
import (
"fmt"
"math/rand"
)

func main() {
target := rand.Intn(100) + 1
fmt.Println(target)
}

This is final solution for Level 4>Lesson 5.
I'm getting error:
Your code's output does not match the expected outcome for this exercise.
2 weeks ago