Write a function that will randomly select a total of 31 flavors from 4 arrays javascript code example
Example: javascript get random array value
//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];