directing output to multiple files

I have a script in which some outputs are directed to one file

echo "Load Started" >>${LOGFILE1}

If I have another file LOGFILE2 and i want to redirect the output of the above echo command to LOGFILE2 as well with the same command line... how can i do that?

Thanks

echo "Load Started" | tee -a  ${LOGFILE2} >>${LOGFILE1}

Excellent.

Thanks a lot.