Question: You have written a snippet of code to display the results of the roll of a six-sided die. When the die displays from 3 to 6 inclusive, you want to display a special message. Using a Kotlin range, what code should you add?
- `3,4,5,6`
- `in 3..6`
- `3 : 6`
- `{3,4,5,6}`
Answer: The correct answer of the above question is Option B:`in 3..6`