Using export command in Linux Basics lab

I keep getting error when I run the following query in linux lab:
bob@caleston-lp10:~$ echo ‘export PROJECT=MECURY’>>/home/bob /.profile
-su: /home/bob: Is a directory
What am I doing wrong?

Hi @Jonathan-Agyei

Seam like you add a space just after /home/bob be sure to no have any space on the command

echo 'export PROJECT=MECURY'>>/home/bob/.profile

Thank