Off the back of my head

[pascal]
var
LastLabelIndex: Integer;

procedure Button1Click(Sender: TObject);
begin
with TLabel.Create(Form1) do
begin
Parent := Form1;
Caption := 'Hello World';
Visible := True;
Left := 10;
Top := LastLabelIndex * 20;
Name := 'NewLabel' + IntToStr(LastLabelIndex);
end;

Inc(LastLabelIndex);
end;
[/pascal]