(array)
| 226 | return Math.floor(Math.random() * num); |
| 227 | } |
| 228 | function sample(array) { |
| 229 | return array[randomize(array.length)]; |
| 230 | } |
| 231 | function multiSample(array) { |
| 232 | const tempArray = [...array]; |
| 233 | const numToRemove = randomize(array.length); |
no test coverage detected