[Arrays]
In scripts, you may want to store a set of items instead of a variable. You can use arrays for this. In bash, to define arrays, we put the values in parentheses with spaces. Below, we have an empty array called a, and then we define another array called b. To retrieve a value from an...