What shape will this code make?

import turtle
Mark = turtle.Turtle()
Mark.back(80)
Mark.left(90)
Mark.forward(50)
Mark.right(90)
Mark.forward(80)
Mark.back(80)
Mark.left(90)
Mark.foward(50)
Mark.right(90)
Mark.forward(80)

husoski2020-11-29T23:35:54Z

Why not just run it?  I did...

EddieJ2020-11-29T23:06:13Z

It will make a nimbled gimbit.

TIAFQ

It's supposed to make an "E" shape, but  you misspelled "forward".

By the way, a nimbled gimbit is a rectangle with only 3 sides.