Create Random inter trial interval

Hey there, i need an random inter trial interval but have no idea how to do this. I tried with code random=math.random; ITI=0 but it doesnt work.
Can anybody help me?

How about

ITIduration = minDur + random()*(maxDur-minDur)