Your code is always executed in sequence.
A line of code is only executed after the lines before have been executed. If you want things to run in parallel you have to learn how to use Threads.
I...