I want to get random number within specific range:
random_number=$(( RANDOM % $RANGE ))
this gives me an error
 ")syntax error: invalid arithmetic operator (error token is "
I assume I can't use $RANGE in this expression, but why? How can I rewrite this?
 
     
     
    