From b3e430ebd341dbf7522d933e0e7e4a8ec7bd3ab7 Mon Sep 17 00:00:00 2001 From: PBT3H24ASC Date: Wed, 26 Nov 2025 15:04:58 +0100 Subject: [PATCH] js --- script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.js b/script.js index 708a561..bcc4084 100644 --- a/script.js +++ b/script.js @@ -1,8 +1,8 @@ let month = 1; let fibonacciSequence = [1, 1]; // Fibonacci-Star -const monthSpan = document.getElementById("month"); -const rabbitsContainer = document.getElementById("rabbitsContainer"); -const nextMonthBtn = document.getElementById("nextMonthBtn"); +const monthSpan = document.getElementById("monat"); +const rabbitsContainer = document.getElementById("container"); +const nextMonthBtn = document.getElementById("nextBtn"); function nextFibonacci(n) { if (n < 2) return 1;