Tell us what’s happening:
Hi there!
So, for some reason I do not pass the test with this code. Although, I think the output is correct. Can you help me to see what Im missing here?
Best
R
const filteredList = watchList
.filter(obj => obj["imdbRating"] >= 8)
.map(obj => ({"titel": obj["Title"], "rating": obj ["imdbRating"]}))