I have two arrays with different values as follows
$DevID={101,102,103,104}
$ProdID={201,202,203,204}
And I want the output to be printed as the first DevID followed by ProdID,as shown below,
101
201
102
202
103
203
104
204
How can I get the above shown output in PowerShell?