I would like to generate positive integers greater than 300 and smaller than 12000.
Considering
Faker documentation, I still have to understand if the following usage can suit me:
Faker::Number.between(300, 12000)
There is a GitHub example which gives '7' as result if the range is between 1 and 10, and I do not understand if this means that the result is an integer.
I am also wondering if it is possible to combine/chain more methods and use for instance the following format:
Faker::Number.number(3, 5).between(300, 12000)