Procedure — Random in range (min, max)

Status
Works as designed
Issue description

How about to create "Random in radius" procedure element:

INPUT: min(number) and max(number)

RETURN: random(number)

I searched this code:

public static double RandomInRange(double min, double max){
    double min = min-1;
    double max = max+1;
    double random = (Math.random()*((max-min)+1))+min;
    return random;
}

Can it help you?

Issue comments

You can already do this using math + and multiply blocks, we don't want to duplicate existing functionality.

Thank you for your code examples anyway :)