How WouldYouRather.cc Works

This is a fun site that provides random "Would You Rather" questions for games or icebreakers.

Simple Random Question Demo

<button onclick="showQuestion()">Show Question</button>
<div id="question"></div>

<script>
const questions = [
  "Would you rather fly or be invisible?",
  "Would you rather have a pet dragon or a pet unicorn?",
  "Would you rather live in the city or the countryside?"
];

function showQuestion() {
  const index = Math.floor(Math.random() * questions.length);
  document.getElementById('question').textContent = questions[index];
}
</script>
  

Try it live at wouldyourather.cc