This should be something simple but I am learning from this ... The issue is that it executes the whole function when reloading the page and not when clicking on the button
document.getElementById("btn1").addEventListener("click", alert("Aqui hay algo nuevo"),false);
function clickeando(){
alert("Aqui hay algo!");
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Practicas Javascript</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<p class="clase1">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi voluptates amet blanditiis, quis asperiores voluptas fuga libero obcaecati nostrum odit labore commodi, delectus natus vel nam fugit repellat quae autem!
</p>
<button id="btn1">Clickeando Ando!</button>
<script src="main.js"></script>
</body>
</html>