var box = new Array();
function showBox() {
      var currIndex = Math.floor(Math.random() * (box.length));
      var output = box[currIndex];
      output = decodeURIComponent(output);
      return output;
  }

  document.write(showBox());
