JSFiddle - React, Tailwind, and code Playground

HTML

<div id="output"></div>

JavaScript

age = prompt("Enter Your Age");
if(age > 100)
{
     document.getElementById('output').innerHTML += "Willard Scott would be proud.<br/>";   
}

if (age> 90)
    document.getElementById('output').innerHTML += "You can say what you want without consequence.<br/>";

if (age >= 65)
{
    document.getElementById('output').innerHTML += "You can retire.<br/>";
} 

if (age > 20)
{
    document.getElementById('output').innerHTML += "You can legally consume alcohol.<br/>";
}  

if (age > 17)
{
    document.getElementById('output').innerHTML += "You can vote.";
}