Copying files with multiple extensions
Brace expansion will get the job done. man bash
and search for Brace Expansion
.
cp *.{txt,jpg,png} destination/
EDIT:
In keeping with the OP's request, the command above was missing the verbose option:
cp -v *.{txt,jpg,png} destination/