The space to the left is called indentation. When we add a code block inside another, the entire code block gets indented by one space.
Make sure to pick if (time === "7:00") {, followed by console.log("Waky waky");, and finally }.
if (time === "7:00") {
console.log("Waky waky");
}