The code a while loop repeats goes inside braces { }. We call it the while loop's code block.
while
{ }
Make sure to pick {, followed by console.log("and again");, and finally }.
{
console.log("and again");
}