Returning Functions and Immediate Invocation
// ride and wait time var parkRides = [["birch bumpers", 40], ["dank bumpers", 36], ["trap bumpers", 41], ["wtf bumpers", 43],]; // fast pass for faster line var fastPassQueue = ["birch bumpers", "dank bumpers", "trap bumpers", "wtf bumpers"]; // allRides arg – this parameter will be the array of the rides and their wait time //…