I need to back up a bunch of files on a directory and save that file as the current date....

this is what i have to find the files modified within the past 24 hours

 find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar"

however i need to save/name this archive as the current date (MM-DD,YYYY.tar.gz)

how do i doo this

archive="$(date +%m-%d,%Y)"
find . -mtime -1 -type f -print0 | xargs -0 tar rvf "${archive}.tar"