Homestuck Random Pageificator

when you go into https://homestuck.kici.moe/random/ it redirects you to a random page

// ==UserScript==
// @name         Homestuck Random Pageificator
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  when you go into https://homestuck.kici.moe/random/ it redirects you to a random page
// @author       toizh
// @match        https://homestuck.kici.moe/random/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=homestuck.kici.moe
// @license      MIT
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    const randomNumber = Math.floor(Math.random() * 8130) + 1;
    const url = `https://homestuck.kici.moe/story/${randomNumber}`;
    window.location.href = url;
})();