JSFiddle - React, Tailwind, and code Playground

by Paul

HTML

<div id="myChoice"></div>

CSS

#myChoice {
    
    background: pink;
    width: 200px;
    height: 200px;
    color: red;
    border: 10px solid orange;
    padding: 10px;
    margin: 0 auto;
    text-align:center;
    line-height: 11.5;
    
}

JavaScript

// Random Revenge Generator - Joke Stuff
var lastResort = ['Knife2Face', 
                  'GiveABathroomQuickie', 
                  'AccidentalFaceIntoDoor',
                  'PutSugarInGasTank',
                  'SliceThroughBrakeCable...',
                  'Your Choice Here'];  

var myChoice = lastResort[Math.floor(Math.random() * lastResort.length)];

document.getElementById('myChoice').innerHTML = myChoice;