como acessar a propriedade do objeto usando a variável [duplicate]

Esta pergunta já tem uma resposta aqui:

Acesse dinamicamente a propriedade do objeto usando a variável 11 respostas

Eu tenho um objeto

var Messages = {
'fullName' : 'Tell us your cool name dude..! e.g. Yousuf Iqbal',
'userName' : 'Choose a catchy username. Remember! It should be available :)',
'password' : 'Choose a top secret password with special chars, numbers and alphabets',
'rePassword' : 'Retype the password you just typed. But, don\'t try to copy!',
'bYear' : 'Tell the year, in which this bomb blasted'
};

e uma variável ..

var attribute = $('#userinfo form input').attr('name');

agora eu quero selecionar a propriedade do objeto Messages usando esta variável assim ..

var message = Messages.attribute;

mas não está funcionando .. e também tentei o seguinte ..

var message = Messages+'.'+attribute;

questionAnswers(2)

yourAnswerToTheQuestion