function genRandomNo(n) { let randomNum = Math.floor(Math.random() * n) + 1; return randomNum; } where n denotes the ”limit” upto which you can generate random integers. A simple, ‘elementary’ level random generator in javascript on which a...