get 3 random items from array javascript code example

Example 1: how to get a random element of an array javascript

var foodItems = ["Bannana", "Apple", "Orange"];
var theFood = foodItems[Math.floor(Math.random() * foodItems.length)];
/* Will pick a random number from the length of the array and will go to the
corosponding number in the array E.G: 0 = Bannana */

Example 2: get random item from array javascript

const randomElement = array[Math.floor(Math.random() * array.length)];

Example 3: get random element from array js

var item = items[Math.floor(Math.random() * items.length)];