Problem 5. Write a JS program to create a word-meaning dictionary of 5 words.

const words = {
    enjoyed: "got joy or pleasure from",
    wonderful: "very good; amazing",
    thinning: "making or becoming thin",
    delighted: "very pleased",
    company: "a friend or friends"
};

console.log(words);
/*
{enjoyed: 'got joy or pleasure from', wonderful: 'very good; amazing', thinning: 'making or becoming thin', delighted: 'very 
pleased', company: 'a friend or friends'}
*/

console.log(words.company);