I have the following object containing arrays :

I am iterating over it to get its key value like to use it further, Using for in to get the data inside of it.
for (let key in gameObj){
console.log(key);
}
But its not even getting into the loop in order to get the arrays.
What am i missing ?