multiple conditions in if using && operator

VARIABLE="project"
if [ [ -n "$VARIABLE" ] && [ $VARIABLE == "project" ] ]
then
echo "VARIABLE is not empty"
fi

this is not working what is wrong in the syntax??

if [[ -n "$VARIABLE"  &&  $VARIABLE == "project" ]]

thanks lorcan

its working ...i wasted one hour on this...