I need help with the following problem: How is it possible to extract a random value from the object below?
const hellos = {
English: "Hello",
Japanese: "Konnichiwa",
German: "Hallo",
Spanish: "Hola",
Arabic: "Ahlan wa sahlan",
Chinese: "Nihao",
};
random output in console to test. E.g. "konnichiawa", "hola", etc.
I couldn't write my code down, because it's still hard for me as a beginner in JS. Please kindly give me some tips. Thank you!