That definitely doesn't explain anything.
Between which two rows?
Where are you typing those row numbers?
Here's what I'd do to quickly insert 25 blank rows
between the existing rows 3 and 4.
Alt + F11 to bring up the VBA environment
Ctrl + g to bring up the immediate window
Type in
Code:
Rows(4).Resize(25).Insert
Hit Enter.