Level4/Lesson5 Bug Report: Why random output should even be checked if it's dependent on the user seed?
package main
import (
"fmt"
"math/rand"
)
func main() {
target := rand.Intn(100) + 1
fmt.Println(target)
}
I get the "Your code's output does not match the expected outcome for this exercise." while my answer is correct. I appreciate if you'd fix the issue.