Lists

Hello,

I want to create a list with 6 random values between 5 and 15. I cannot think of how I should go about this aside from doing it manually as this is not efficient. My issue is the fact that I am unsure if i can use the “?” roll funct to start from a number other than zero.

Thanks

Try adding an offset to the generated list:

q)5+6?10

6 12 11 8 9 8

Try 5+6?10

If you want 15 included use 5+6?11 instead.