Hello, i try to create 5 line who disapear when the check box is unchecked. and i try along time and i can make it so can you help me? <!DOCTYPE html > <html> <body> <p> Display some text when the checkbox is checked: </p> <label for ="myCheck" > Checkbox: </label> <input type ="checkbox" id ="myCheck" onclick ="myFunction()" > <p id ="attr" style ="display:none" > Checkbox is CHECKED! </p> <script> function myFunction() { var checkBox = document.getElementById("myCheck"); var text = document.getElementById("attr"); if (checkBox.checked == true){ attr.style.display = "block"; } else { attr.style.display = "none"; } } </script> </body> </html>