HI I have defined variable called "const VA" but in output it is coming undefine cause of that i am not able to see values inside it below is my code.
function createAddress(streetA, cityA, zipcodeA) {
return
{
streetA, cityA, zipcodeA;
}
}
const VA = createAddress("405", "newyork", "123456");
console.log(VA);
Output is undefined