Is there some way to make random strings with .repeat() still random? If I use this:
console.log(`${Math.random()} | `.repeat(5)); the output is something like this:
0.2564646392254777 | 0.2564646392254777 | 0.2564646392254777 | 0.2564646392254777 | 0.2564646392254777 | In a nutshell, the output is the same.
|at the end ?