JSFiddle - React, Tailwind, and code Playground

JavaScript

Array.prototype.rand = function() { 
    return this.sort(function() {
      return 0.5 - Math.random();
    })[0];
}

alert(['a','b','c'].rand());