Challenge: Lévy walker

Turn this walker from a random walker to a Lévy walker.



Use the Monte Carlo method

Hint

var stepSize = ;


This walker walks a random step size in each direction, we want it to use a probability distribution instead.
Change it to use a value from the monteCarlo() function instead.