Course 5 Week 2 Assignment 2 unhashable type: 'list'

Hi guys,
I’m kind of stucked here in the second assigment for week 2 course 5:

   22 
     23     # Initialize the average word vector, should have the same shape as your word vectors.
---> 24     avg = np.zeros(word_to_vec_map[any_word].shape)
     25 
     26 

TypeError: unhashable type: 'list'

Anyone with the same issue?

You’re missing a set of parenthesis around “word_to_vec_map[any_word]”.