let secretCode = "eleis";
let typedCode = "";
// Listen for keypresses
document.addEventListener("keydown", (event) => {
// Add the new key to the typedCode string
typedCode += event.key;
// Check if typedCode matches the secretCode
if (typedCode.endsWith(secretCode)) {reveal next.}
// If correct, reveal -