Place to find is an carry See this code Click here!:
let meat = 'garlic, salt, pepper';
let stew = 'carrot, broccoli, stew, mushroom';
let tons = 'fish, leaf, lemon, beef grind, basil oil';
function printCooking(cooking, entry, stews) {
for (let element of cooking) {
console.log(element);
}
for (let element of entry) {
console.log(element);
}
for (let element of stews) {
console.log(element);
}
}
let grain = 0.5 + 'kg';
console.log(grain);
printCooking(meat, stew, tons);