Bash Scripting - Loops
How can you modify this nested loop to print all pairs of items from two lists?
list1="a b"
list2="1 2"
for x in $list1; do
for y in $list2; do
echo "$x$y"
done
done