Difference between end for and next

I saw for statements like this:

for each vid in videos
        titles.Push(vid.Title)
next

and also


for each vid in videos
        titles.Push(vid.Title)
end for

Which is the difference between them?

Thank you.

They are identical. BrightScript allows for either one.