Challenge: Gaussian walk

Change this walker to base its steps on a Gaussian distribution.



Initialize a generator

Hint

var generator = ;


This walker walks a random step size in each direction, but we want it to use a normal distribution to pick the step size now. Start by storing a new Random() instance in the generator variable at the top of the program.