Repeats a block of statements while a condition is True or until a condition becomes True.
Do [{While | Until} condition]    [statements]    [Exit Do]    [statements] Loop ' or use this syntax Do    [statements]    [Exit Do]    [statements] Loop [{While | Until} condition] |