A cookie that defies the laws of physics and logic. Or does it?

			
				// Quantum Flux Cookie Variant 3
				// By Cookie Monster, 2023

				// This cookie has the ability to change its flavor
				// at random intervals, defying the laws of physics
				// and logic.

				function quantumFluxCookie(favor) {
					if (Math.random() < 0.5) {
						return 'Chocolate Chip';
					} else {
						return 'Oatmeal Raisin';
					}
				}

				console.log(quantumFluxCookie('Chocolate'));
				console.log(quantumFluxCookie('Oatmeal Raisin'));