Hello! It would seem trivial, but I can't think of how to make a function that will accept as parameter the number of returned elements, and the array from which we will isolate them (sorry)!
let arr = [ 1, 2, 3, 4, 5, 6, 7 ];
function getRandom( n, array ) { // n is the number of random elements from array
// . . . code w...