A secret number between 1 and the selected maximum range is chosen.
Players take turns trying to guess the number.
To make a guess, you must first correctly answer a question.
If you answer incorrectly, your turn is skipped in the current round.
When guessing, the range narrows based on your guess.
If you guess too high, that becomes the new upper bound.
If you guess too low, that becomes the new lower bound.
The player who guesses the secret number wins!
Custom Question Bank
Enter your questions in JSON format. Each question needs a question text, options array, and a correctAnswer that matches one of the options. Example format:[{ "question": "What is 2+2?", "options": ["3", "4", "5", "6"], "correctAnswer": "4"}]