0 / 60 seg.

What does the asterisk represent in this statement?

#!/usr/bin/env bash
case $num in
    1)
    echo "one"
    ;;
    2)
    echo "two"
    ;;
    *)
    echo "a mystery"
    ;;
esac