The function below "foo" doesn't work. I would like a way to get the output shown below, working around the principle shown in "foo".
function foo() {
    var i;
    i = "hello world";
    i.a = "hello kitten";
    i.b = "hello... Is there anybody out there?"
    return i; // This doesn't work
}
This is what I want:
    alert(foo()); // "hello world"
    var bar = foo();
    alert(bar.a); // "hello kitten"
    alert(bar.b); // "hello... Is there anybody out there?"
Thanks.
