Não é possível converter implicitamente o tipo System.Collections.Generic.IEnumerable <B> para System.Collections.Generic.List <B>

Com o código abaixo eu recebo este erro e preciso de ajuda sobre como deixar o método Load returnList<B>

Não é possível converter implicitamente o tipo System.Collections.Generic.IEnumerable em System.Collections.Generic.List

public class A
    {
      public List<B> Load(Collection coll)
      {
        List<B> list = from x in coll select new B {Prop1 = x.title, Prop2 = x.dept};
        return list;
      }
    }

public class B
{
  public string Prop1 {get;set;}
  public string Prop2 {get;set;} 
}

questionAnswers(3)

yourAnswerToTheQuestion