Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialcrimson cdmochi
1,193 PointsCreate a String variable of randomNumber using Random() to become integer between 0 and 9
import java.util.Random
val randomNumber = Random() randomNumber = randomNumber.nextInt(10)
import java.util.Random
val randomNumber = Random()
randomNumber = randomNumber.nextInt(10)
1 Answer
Andris Vinkalns
9,537 PointsNot sure exactly what you are trying to achieve but according to this: https://stackoverflow.com/questions/45685026/how-can-i-get-a-random-number-in-kotlin you can create a random int in kotlin with code like this:
var a: Int = Random.nextInt(0..10)
and then to assign it to String variable just perform
var s: String = a.toString()