OK this is text
import lydio from "lydio"
import * as lydioArtifact from "./lydio-artifact.js"
import * as lydioNodes from "./lydio-nodes.js"
function generateCoinFlipDiary(startDate, currentDate) {
let current = new Date(startDate);
const results = []
// Loop through each day until we reach the current date
while (current <= currentDate) {
const formattedDate = current.toLocaleDateString('en-US'); // Format date as MM/DD/YYYY
results.push(`${formattedDate} — <b>Tails</b>`);
// Move to the next day
current.setDate(current.getDate() + 1);
}
return results.reverse()
}
