Get last field specific record

i have file A as below contents

---------------------------

Use descriptive thread titles when posting.
For example, do not post questions with subjects like
"Help Me!", "Urgent!!" or "Doubt". 
For example, do not post questions
For example, do not deliminated.

output file as below:
question

explanation :need to display 4 line's last field

try:

awk 'NR==4 {print $NF}' infile

thanks dude i will try and let u know shortly