They both contain the same values, but I'm wondering why they look different when I console them out in Dev tools.
var values = [6, 6, 6, 19, 13, 50];
function boxWidth() {
var widths = new Array();
widths.push(values);
console.log(widths);
console.log(values);
}