Can someone please tell me what I am doing wrong? I am trying to solve a system of odes using NDSolve. The code I have written is as follows:
NDSolve[{x'[t] == cos[t] + 4sin[t] - 4[x] - 2[y], y'[t] == -3sin[t] +
3[x] + [y], x[0] == 0, y[0] == -1},{x[t],y[t]},t]
However I am getting an error that says
Syntax:"-3sin[t]+3[x]+" cannot be followed by "[y]".
I have tried taking the brackets off [y] which results in
NDSolve: The function y appears with no arguments.
Any help would be greatly appreciated. Also how would I plot a solution curve for this ODE after getting NDSolve to function?

4[x]and2[y]? Are those functions?? Also, the sinus function ist written in Mathematica with capital S,Sin[x]is $\sin(x)$. You should first take a look at basic syntax in Mathematica. – Mauricio Fernández May 07 '17 at 15:31Sinsin before! Please show some signs of learning instead of asking people to do your work for you. – Michael E2 May 07 '17 at 18:05