Go Back
Given an array of strings (keys) and object, return a new array of values using the given array elements as keys to access the given object.
solution(['123', 'abc'], {123: 'hi', 345: 'world', abc: 'world'}); // will return ['hi', 'world']