#!/usr/bin/env bash # This function will create a random word pair with an underscore separator ex. turtle_ladder # It accepts one optional argument (an integer) (the number of words to return) random_words() { local num=${1:-2} local -a arr for ((i=0;i