Ok I am trying to pull information fo my facebook app I am doing. I am able to pull all the $me['data']

but when I try to pull the (/me/likes) API and do the same all I get the word Array

I did a var_dump() and I know it is there.
So I wrote the following code to pull all in the information so I could echo it on the page/

<?php
foreach ($likes['data'] as $var){
echo $var ."\n";
}

All's I get is the word Array over and over again