Leading spaces of variable removed

#!/bin/bash

TESTVAR="     5spaces"
echo $TESTVAR
hostame:~# ./test.sh
5spaces

The leading spaces from my variable are removed when the content is echo'd. I am trying to make some tabular data.

`echo -e` also fails.

Any suggestions?

echo "$TESTVAR"

...the variable put inside double-quotes will preserve spaces

Works great. Thanks!