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 trial

Android Build a Simple Android App with Kotlin Basic Android Programming Using the Random Class

crimson cdmochi
crimson cdmochi
1,193 Points

Create 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)

RandomTest.kt
import java.util.Random


val randomNumber = Random()
randomNumber = randomNumber.nextInt(10)

1 Answer

Not 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()