C#で
1から4までの数字を表示するプログラム↓を作ったのですが

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            int a;
            for (a = 0; a < 5; a++) ;
                Console.WriteLine(a);
        }
    }
}

コンソールに
5
としか出てきません
いろいろ調べましたが間違いが分かりません
どこが違うのでしょうか