The else statement runs when the if condition is false. It's the "otherwise" option!
IF you have money,
THEN buy the toy
ELSE
Save up for it
using System; class Program{ static void Main() { int age = 15; if (age >= 18) { Console.WriteLine("You are an adult!"); } else { Console.WriteLine("You are not an adult yet."); } }}