let strArr = sessionStorage.getItem("urls"); let urls = strArr ? JSON.parse(strArr) : [ "https://vk.com/stroiemva", "https://ya.ru", "https://ya.ru" ];
<a href="/" id="random-link" src="scripts/app.js" class="btn linkLike"> Отправить заявку </a>
document.getElementById('random-link').onclick = function(e) { e.preventDefault(); const urls = [ "https://vk.com/stroiemva", "https://ya.ru", "https://google.com" ]; window.open(urls[Math.floor(Math.random() * urls.length)], '_blank'); };
<a href="#" id="random-link" class="btn linkLike">Отправить заявку</a> <script src="scripts/app.js"></script>