Search for Your Favorite Recipes

Crispy Chickpea Snack

Crunchy and Savory

Crispy Chickpea Snack

INGREDIENTS

    PREPARATION METHOD

      py. Cool before serving."; const instructionsArray = instructionsText.split('. ').filter(instruction => instruction.trim() !== ""); const instructionsList = document.getElementById("instructions-list"); instructionsArray.forEach(instruction => { const li = document.createElement("li"); li.textContent = instruction.trim() + '.'; instructionsList.appendChild(li); });