Since you put an Object into Array called recordings, you can't get value with recordings.x
obviously, which is the way get value from Object.
If you want get value from Object,there is no need to push it into an array.
var e = { x: 1, y: 2, z: 3, w:4, o:5 };
var recordings = {
x: e.x,
y: e.y,
z: e.z
};
console.log(recordings.x);
Otherwise, you want get value from Array , what you need is for loop.
var e = { x: 1, y: 2, z: 3, w:4, o:5 };
var recordings = [];
recordings.push({
x: e.x,
y: e.y,
z: e.z
});
for(index in recordings){
console.log(recordings[index].x);
console.log(recordings[index].y);
console.log(recordings[index].z);
}