Then, you can try with this:
and you can set the frequency, just like a wiggle.
Cheers,
François
frequency = 2;
seed = Math.floor(time*frequency);
start = seed/frequency;
stop = start + (1/frequency);
t = key(numKeys).time;
seedRandom(seed,true);
rand1 = random(t);
seedRandom(seed+1,true);
rand2 = random(t);
easing = ease(time,start,stop, rand1, rand2);
valueAtTime(easing);