Problem

Spot the bug in this Tweet. (❤️ you Jon!)

Solution
const options = ["jersey mikes", "firehouse", "subway"]

options[Math.floor((Math.random() * 3) + 1)]

By adding 1 to the result of Math.random() * 3, it will always be greater than 1 which means jersey mikes will never be chosen.

const options = ["jersey mikes", "firehouse", "subway"]

options[Math.floor((Math.random() * 3))]

The bigger problem though is why Jon would include Subway on this list…