// Review Challenge 4: Taco Tray
// - Help our chef fill a tray with tacos!
function getRandomNumberOfTacos() {
/*
Make this function return an array that contains
between one and ten taco emojis 🌮
Use the following JavaScript concepts:
- Math.random()
- Math.floor()
- new Array()
- Array.fill()
*/
// let x = Math.random() * 10;
// console.log(Math.floor(x));
// let randomNumber = Math.floor(Math.random()*10)+1;
// console.log(randomNumber)
// const randomNumber = Math.floor(Math.random()*10+1);
// console.log(randomNumber);
// const tacos = new Array("Banana", "Orange", "Apple", "Mango");
// tacos.fill("Kiwi", 2, 4)
// console.log(tacos)
// const tacos = new Array(3);
// tacos.fill('🌮');
// console.log(tacos);
const tray = new Array(Math.floor(Math.random()*10)+1).fill('🌮').join(' ');
return [tray]; // replace this empty tray array
}
function putTacosOnTray() {
return getRandomNumberOfTacos().map(function (taco) {
return `<div class="taco">${taco}</div>`
}).join('')
}
document.getElementById('tray').innerHTML = putTacosOnTray()