Hello StackOverflow community!
At the moment I am completly stuck with my code, have try different ways to remove a value from array when picked, I know I have to use sp
First, put the random-number in a seperate variable
var rnd = Math.floor(Math.random()*cars.length); var rand = cars[rnd];
Then remove that specific item from the array
cars.splice(rnd, 1);
Cheers R