var student = {
    name: "John Doe",
    marks : 400,
    subject : ["english" , "maths" , "histort"]
}

console.log("Array inside of object is "+ student.subject);