JSFiddle - React, Tailwind, and code Playground

by Tori Hoelscher

HTML

<h1>Picking a random name from the array:<br> </h1>

<h2>     <p id = "textName" style="color:purple"> </p>   

</h2>

<button onclick="ToriHoelscherAssignment1()">Pick One</button>

JavaScript

//assuming these are the first names of the students of this class.

var mems = new Array("Kyle", "Vanessa", "Todd", "Ronald", "Andrea", "Michael", "John", "Shawn", "Jeramiah", "Roger", "Jayson", "Joseph", "Thomas", "Michele", "Evan", "Jad", "Blanca", "Gary");

function ToriHoelscherAssignment1() {

  var index = Math.floor(Math.random() * mems.length);

  document.getElementById("textName").innerHTML = mems[index];

}