You have a file named '1' in your current directory.
echo [0123456789]
is a wildcard command that tells bash to display the names of any files in the current directory whose names are comprised of a single digit. If no such files exist, echo will display the wildcard spec itself.
Notice:
$ mkdir /tmp/new-directory
$ cd /tmp/new-directory
$ echo [0123456789]
[0123456789]
$ touch 1 2 4 8
$ echo [0123456789]
1 2 4 8
If you want to display that string literally, instead of displaying the filenames that it matches, enclose the string in quotes:
$ echo "[0123456789]"
[0123456789]