I'm trying to create an array with 3 elements without using for loops, so the code will be a single line (or single statement). What I want to do is creating an array of 3 elements and each element should be random number from 0 to 255 (0 and 255 will be included).
let colors = new Array(3).map((v) => Math.floor(Math.random()*256));
But this code doesn't work, I guess it's because each element is undefined and .map array property can't map undefined elements. What's your suggestions?