Hi I'm trying to repeat this function but each time with different arguments. This is what I have
var pathOne = function(person,place) { *script* };
pathOne(hagrid,forest);
pathTwo(barty,seawalk);
and so on...
How do I set a bunch of them equal to the function at once?